-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 961 Bytes
/
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
{
"name": "would-they-rather",
"version": "1.0.0",
"description": "New Year's Game",
"main": "index.js",
"scripts": {
"test": "jest --verbose",
"dev-server": "nodemon --ignore client/ --ignore .cache/ --ignore numbers-backup.json index",
"dev-index": "parcel client/src/views/index.html --out-dir client/build",
"dev-admin": "parcel client/src/views/admin.html --out-dir client/build"
},
"author": "Michael Savchuk",
"license": "MIT",
"dependencies": {
"dotenv": "^6.1.0",
"express": "^4.16.4",
"jsonfile": "^5.0.0",
"lodash": "^4.17.11",
"socket.io": "^2.1.1",
"twilio": "^3.24.0"
},
"devDependencies": {
"axios": "^0.18.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"jest": "^23.6.0",
"node-sass": "^4.10.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"socket.io-client": "^2.1.1",
"supertest": "^3.3.0"
}
}