This repository was archived by the owner on Aug 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.17 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "postit",
"version": "1.0.0",
"description": "Minimal social network web app",
"main": "server/build/bin/www",
"scripts": {
"postinstall": "npm run build",
"build": "npm run build:server & npm run build:client",
"build:server": "sh server/scripts/build.sh",
"build:client:dev": "webpack --config client/webpack.config.js",
"build:client": "webpack --config client/webpack.config.prod.js",
"start": "node server/build/bin/www",
"start:dev": "nodemon server/build/bin/www",
"client:dev": "webpack-dev-server --config client/webpack.config.js",
"test": "npm run test:server & npm run test:client",
"test:server": "sh server/scripts/test.sh",
"test:client": "jest -u",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"jest": {
"moduleNameMapper": {
".s?css$": "identity-obj-proxy"
}
},
"nodemonConfig": {
"ignore": [
"client/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/usmansbk/PostIt.git"
},
"keywords": [
"PostIt",
"Social Network",
"Node",
"Sequelize",
"Postgres",
"React",
"Redux"
],
"author": "Babakolo Usman Suleiman",
"license": "MIT",
"bugs": {
"url": "https://github.com/usmansbk/PostIt/issues"
},
"homepage": "https://github.com/usmansbk/PostIt#readme",
"dependencies": {
"body-parser": "^1.18.2",
"bunyan": "^1.8.12",
"express": "^4.16.2",
"form-urlencoded": "^2.0.4",
"isomorphic-fetch": "^2.2.1",
"jsonwebtoken": "^8.2.0",
"moment": "^2.20.1",
"morgan": "^1.9.0",
"normalizr": "^3.2.4",
"pg": "*",
"pg-hstore": "*",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"regenerator-runtime": "^0.11.1",
"request": "^2.83.0",
"sequelize": "^4.28.6",
"sequelize-cli": "^3.2.0",
"serve-favicon": "^2.4.5",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"webpack-dev-server": "^2.11.1"
},
"nyc": {
"exclude": [
"**/*[sS]pec.js"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.0.6",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"codeclimate-test-reporter": "^0.5.0",
"compression-webpack-plugin": "^1.1.6",
"coveralls": "^3.0.0",
"css-loader": "^0.28.8",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.14.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"fetch-mock": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"jasmine": "^2.8.0",
"jest": "^22.0.6",
"node-sass": "^4.7.2",
"nodemon": "^1.14.3",
"nyc": "^11.4.1",
"react-test-renderer": "^16.2.0",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"webpack": "^3.10.0"
},
"engines": {
"node": "8.9.3"
}
}