-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 2.03 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
50
51
52
53
54
55
56
{
"name": "ches-showcase-app",
"version": "1.0.0",
"private": true,
"license": "Apache-2.0",
"scripts": {
"serve": "nodemon ./bin/www",
"build": "cd frontend && npm run build",
"start": "node ./bin/www",
"test": "jest --verbose --forceExit --detectOpenHandles --maxWorkers=10",
"lint": "eslint . **/www --no-fix --ext .js",
"lint:fix": "eslint . **/www --fix --ext .js",
"pretest": "npm run lint",
"posttest": "node ./lcov-fix.js",
"clean": "rm -rf coverage dist",
"purge": "rm -rf node_modules",
"rebuild": "npm run clean && npm run build",
"reinstall": "npm run purge && npm install",
"all:build": "npm run build",
"all:start": "npm run start",
"all:test": "npm run test && cd frontend && npm run test",
"all:lint": "npm run lint && cd frontend && npm run lint",
"all:lint-fix": "npm run lint:fix && cd frontend && npm run lint:fix",
"all:ci": "npm ci && cd frontend && npm ci",
"all:install": "npm install && cd frontend && npm install",
"all:clean": "npm run clean && cd frontend && npm run clean",
"all:purge": "npm run purge && cd frontend && npm run purge",
"all:rebuild": "npm run rebuild && cd frontend && npm run rebuild",
"all:reinstall": "npm run reinstall && cd frontend && npm run reinstall",
"all:fresh-start": "npm run all:reinstall && npm run all:rebuild && npm run all:start",
"frontend:purge": "cd frontend && npm run purge"
},
"dependencies": {
"api-problem": "^9.0.2",
"axios": "^1.7.7",
"axios-token-interceptor": "^0.2.0",
"body-parser": "^1.20.3",
"compression": "^1.7.4",
"config": "^3.3.12",
"express": "^4.21.0",
"express-winston": "^4.2.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"winston": "^3.14.2",
"winston-transport": "^4.8.0"
},
"devDependencies": {
"axios-mock-adapter": "^1.22.0",
"eslint": "^8.57.0",
"eslint-config-recommended": "^4.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"supertest": "^6.3.4"
}
}