-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.16 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
{
"name": "darkrai-server",
"version": "1.0.0-beta",
"private": true,
"license": "UNLICENSED",
"main": "n/a",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon src/index.js",
"lint": "eslint src",
"start": "cross-env NODE_ENV=production node src/index.js"
},
"dependencies": {
"@tensorflow-models/toxicity": "^1.2.0",
"@tensorflow/tfjs-node": "^2.3.0",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.3",
"helmet": "^4.1.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.20",
"mongoose": "^5.10.3",
"morgan": "^1.9.1",
"socket.io": "^2.4.0"
},
"devDependencies": {
"cross-env": "^7.0.2",
"eslint": "^7.8.1",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^4.2.3",
"nodemon": "^2.0.1",
"prettier": "^2.1.1",
"pretty-quick": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn lint"
}
}
}