-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.23 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
{
"name": "chatti",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node server/index.js",
"start:all": "NODE_ENV=production cd server && nodemon index.js & cd client && npm run start",
"heroku-postbuild": "NODE_ENV=production cd client && npm i && npm run build && cd ../server && npm i",
"test": "NODE_ENV=test cd client && npm test --watchAll && cd ../server && npm test",
"coverage": "NODE_ENV=test cd client && npm test -- --coverage --watchAll=false && codecov && cd ../server && npm test -- --coverage --watchAll=false && codecov",
"gap": "npm i && cd client && npm i && cd ../server && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac18/chatti.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac18/chatti/issues"
},
"homepage": "https://github.com/fac18/chatti#readme",
"cacheDirectories": [
"client/node_modules",
"server/node_modules"
],
"devDependencies": {
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"nodemon": "^2.0.2",
"prettier": "1.19.1"
},
"dependencies": {
"react": "^16.12.0",
"react-player": "^1.15.2"
}
}