-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.7 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
57
{
"name": "node-api-server-template",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git@github.com:arkmq-org/node-api-server-template.git"
},
"scripts": {
"build": "yarn clean && tsc -p tsconfig.json && yarn copy-config",
"clean": "rm -rf dist",
"copy-config": "cp -r src/config dist/config",
"lint": "yarn eslint src --fix && stylelint \"src/**/*.css\" --allow-empty-input --fix",
"start": "node ./dist/app.js",
"test": "NODE_TLS_REJECT_UNAUTHORIZED=0 TZ=UTC jest --runInBand",
"ts-node": "ts-node -O '{\"module\":\"commonjs\"}'"
},
"devDependencies": {
"@types/base-64": "^1.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "27.5.2",
"@types/js-yaml": "4.0.5",
"@types/node": "^20.10.4",
"@types/node-fetch": "^2.6.11",
"@types/webpack": "5.28.1",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"chromatic": "6.10.1",
"copy-webpack-plugin": "11.0.0",
"eslint": "^8.10.0",
"eslint-plugin-unused-imports": "^3.2.0",
"jest": "^27.5.1",
"jest-environment-jsdom": "^27.5.1",
"lint-staged": "13.1.0",
"ts-jest": "^29.2.1",
"ts-loader": "^9.3.1",
"ts-node": "10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.7.4",
"yaml": "^2.4.5"
},
"readme": "README.md",
"dependencies": {
"base-64": "^1.0.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "4.18.2",
"express-openapi-validator": "5.1.2",
"js-yaml": "4.1.0",
"node-fetch": "2",
"swagger-routes-express": "^3.3.2",
"yaml": "^2.4.5"
}
}