-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.45 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
{
"name": "chatz",
"version": "1.0.0",
"description": "",
"main": "bin/www",
"scripts": {
"start": "NODE_ENV=production node bin/www",
"start-dev": "NODE_ENV=dev node bin/www",
"test": "NODE_ENV=test mocha --reporter spec --require test/bootstrap/node test/*.test.js test/**/*.test.js",
"coverage": "NODE_ENV=test nyc mocha --reporter spec --require test/bootstrap/node test/*.test.js test/**/*.test.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"chatz-lib": "github:try-it-out/chatz-lib",
"config": "^3.2.4",
"connect-mongo": "^3.2.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-winston": "^3.4.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.4.1",
"mongoose": "^5.8.3",
"random-name": "^0.1.2",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.2",
"mongodb-memory-server": "^6.2.0",
"mongodb-memory-server-global": "^5.2.11",
"node-mocks-http": "^1.8.1",
"nyc": "^14.1.1",
"sinon": "^7.5.0",
"supertest": "^4.0.2"
}
}