-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.57 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
{
"name": "token",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"serve": "npm run setlocal && npm run servecmd",
"settest": "set NODE_ENV='test'",
"setlocal": "set NODE_ENV='local'",
"servecmd": "nodemon ./src/server.js",
"start": "node --max-old-space-size=150 ./src/server.js",
"debug": "node --inspect ./src/server.js",
"lint": "node_modules/.bin/eslint . --no-fix --ignore-pattern 'node_modules' --ext .js",
"lint:fix": "node_modules/.bin/eslint . --fix --ignore-pattern 'node_modules' --ext .js",
"test": "node_modules/.bin/jest --env node",
"test-linux": "export NODE_ENV=test && node_modules/.bin/jest",
"test:local": "npm run setlocal && npm run test",
"test:unit": "npm run settest && npm run test",
"clean": "rm -rf coverage dist",
"pretest": "npm run lint",
"purge": "rm -rf node_modules",
"reinstall": "npm run purge && npm install",
"test:unit-linux": "export NODE_ENV=test && npm run test"
},
"author": "",
"license": "ISC",
"dependencies": {
"ansi": "^0.3.1",
"axios": "^1.4.0",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"fast-safe-stringify": "^2.1.1",
"fs": "^0.0.1-security",
"has-ansi": "^5.0.1",
"jsonexport": "^3.2.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"nconf": "^0.12.0",
"node-cache": "^5.1.2",
"nodemon": "^2.0.22",
"path": "^0.12.7",
"strip": "^3.0.0",
"util": "^0.10.4",
"winston": "^3.9.0",
"winston-daily-rotate-file": "^4.7.1"
}
}