-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 3.19 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
95
96
97
98
99
100
101
{
"name": "sasc",
"version": "0.0.0",
"private": true,
"main": "server/index.js",
"scripts": {
"test": "for dir in ./server/test/*/; do echo 'RUNNING TESTS IN '${dir}; mocha ${dir}*.js; done",
"test-models": "mocha ./server/test/models/*.js",
"test-socket": "mocha ./server/test/socket_server/*.js",
"start": "npm-run-all --parallel open:src lint:watch",
"server": "nodemon ./server/bin/www",
"open:src": "babel-node ./server/bin/www",
"lint": "node_modules/.bin/esw webpack.config.* client",
"lint:watch": "npm run lint -- --watch"
},
"dependencies": {
"assert": "^1.4.1",
"async": "^2.6.0",
"await-to-js": "^2.0.1",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"cookie-parser": "~1.4.3",
"debug": "~2.6.3",
"email-regex": "^2.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"jwt-simple": "^0.5.1",
"morgan": "^1.9.1",
"mysql2": "^1.3.5",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"prop-types": "^15.5.10",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^5.0.5",
"react-router-dom": "^5.0.0",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"serve-favicon": "~2.4.2",
"serve-static": "^1.11.1",
"siege": "^0.2.0",
"socket.io": "^2.0.2",
"twilio": "^3.4.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.4",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.6",
"babel-plugin-react-display-name": "2.0.0",
"babel-preset-react-hmre": "1.1.1",
"bcrypt": "^3.0.0",
"chai": "^4.1.1",
"chai-http": "^4.3.0",
"cheerio": "^0.20.0",
"colors": "1.1.2",
"compression": "^1.6.1",
"cross-env": "1.0.7",
"css-loader": "^2.1.1",
"enzyme": "3.9.0",
"eslint": "^5.16.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-react": "5.0.1",
"eslint-watch": "^5.1.2",
"eventsource-polyfill": "0.9.6",
"expect": "1.19.0",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "0.8.5",
"jsdom": "8.5.0",
"mocha": "^6.1.4",
"nock": "8.0.0",
"nodemon": "^1.12.1",
"npm-run-all": "1.8.0",
"open": "^6.3.0",
"prettier": "^1.17.1",
"react-addons-test-utils": "15.6.2",
"redux-devtools-extension": "^2.13.2",
"redux-mock-store": "1.0.2",
"style-loader": "0.13.1",
"url-loader": "^1.1.2",
"webpack": "^4.32.2",
"webpack-dev-middleware": "3.7.0",
"webpack-hot-middleware": "2.25.0"
}
}