-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.52 KB
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
{
"name": "nodejs-ncc-template",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"start": "node ./dist/index.js",
"build": "ncc build index.ts",
"dev": "ncc run index.ts",
"test": "jest",
"lint:fix": "eslint --fix .",
"lint": "eslint .",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{spec,test}.{ts,tsx}": [
"yarn test"
],
"**/*.{ts,tsx}": [
"prettier --write"
]
},
"dependencies": {
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dayjs": "^1.11.4",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"helmet": "^5.1.1",
"joi": "^17.6.0",
"knex": "^2.2.0",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"superagent": "^8.0.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.6",
"@types/morgan": "^1.9.3",
"@types/node": "^18.7.9",
"@types/superagent": "^4.1.15",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"supertest": "^6.2.4",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
}
}