-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.73 KB
/
package.json
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
{
"name": "groupthai",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.18.0",
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.0",
"body-parser": "^1.15.2",
"bootstrap-sass": "^3.3.7",
"connect-mongo": "^1.3.2",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"express-session": "^1.15.2",
"express-validator": "^3.2.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.2",
"font-awesome": "^4.7.0",
"font-awesome-webpack": "0.0.5-beta.2",
"html-webpack-plugin": "^2.22.0",
"js-cookie": "^2.1.4",
"json-loader": "^0.5.4",
"less": "^2.7.2",
"lodash": "^4.17.4",
"material-ui": "^0.18.1",
"mongoose": "^4.10.6",
"morgan": "^1.8.1",
"muicss": "^0.9.16",
"node-sass": "^3.10.0",
"parallelshell": "^2.0.0",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"react-router-dom": "^4.1.1",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"rimraf": "^2.6.1",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.9",
"webpack": "^2.4.1",
"webpack-node-externals": "^1.5.4",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"babel-jest": "^20.0.3",
"chai": "^3.5.0",
"eslint": "^4.5.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"jest": "^20.0.4",
"nodemon": "^1.10.2",
"regenerator-runtime": "^0.11.0"
},
"scripts": {
"clean": "rimraf public",
"dev": "NODE_ENV=development nodemon --exec babel-node ./src/server/index.js",
"test": "jest",
"prestart": "npm run clean",
"start": "parallelshell 'npm run serverside'",
"serverside": "webpack && webpack --config webpack.server.config.js && node prod-server.js",
"seed": "bash -c webpack && webpack --config webpack.test.config.js ./bin/seed.js ./bin/seed.tmp.js && node ./bin/seed.tmp.js && rm -f ./bin/seed.tmp.js"
},
"author": "",
"license": "ISC",
"jest": {
"verbose": true,
"moduleDirectories": [
"node_modules",
"src"
]
}
}