-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
79 lines (79 loc) · 2.08 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "node-sneaker",
"version": "1.0.0",
"description": "Provide A RESTful API for search and compare the price of sneakers",
"main": "app.js",
"scripts": {
"start": "gulp",
"build": "gulp build",
"server": "export NODE_ENV=production && node dist/app",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint:fix": "npm run lint -- --fix",
"lint:types": "tsc --project ./tsconfig.json --noEmit"
},
"keywords": [],
"author": "JasonZj",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"dotenv": "^8.2.0",
"glob": "^7.1.6",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-jwt": "^4.0.0",
"koa-logger": "^3.2.1",
"koa-parameter": "^3.0.1",
"koa-router": "^10.0.0",
"koa2-cors": "^2.0.6",
"md5": "^2.3.0",
"mongoose": "^5.11.10",
"tunnel": "0.0.6"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/dotenv": "^8.2.0",
"@types/glob": "^7.1.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/koa": "^2.11.6",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-jwt": "^3.3.0",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.4.1",
"@types/koa2-cors": "^2.0.1",
"@types/node": "^14.14.20",
"@types/tunnel": "0.0.1",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"cz-conventional-changelog": "^3.3.0",
"del": "^6.0.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"gulp": "^4.0.2",
"gulp-nodemon": "^2.5.0",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:types && lint-staged"
}
},
"lint-staged": {
"server/**/*.{jsx,tsx,ts,js,json}": [
"prettier --write",
"yarn lint:fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}