-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.75 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
{
"name": "todo-list",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:ALFINKA/todo-list.git",
"author": "alfin kurniawan aryanto <[email protected]>",
"license": "MIT",
"prettier": {
"singleQuote": true
},
"engines": {
"node": "16.16.0"
},
"scripts": {
"tsc": "rm -rf build/ && tsc",
"ts": "rm -rf build/ && tsc -w",
"dev": "nodemon ./build/src/index.js",
"dev:ts": "nodemon -x ts-node ./src/index.ts",
"start": "ts-node ./src/index.ts",
"test": "jest"
},
"devDependencies": {
"@types/node": "^18.6.5",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"supertest": "^6.2.4",
"ts-jest": "^28.0.7"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/helmet": "^4.0.0",
"@types/jest": "^28.1.6",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"helmet": "^5.1.1",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.21.3",
"sequelize-cli": "^6.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}