-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
{
"name": "auth",
"version": "1.0.0",
"description": "TADA Authentication Service",
"main": "index.js",
"scripts": {
"start": "node build/server.js",
"dev": "nodemon --config \"./util/nodemon.json\"/",
"test": "npm test",
"tsc": "tsc",
"lint": "tslint --project tsconfig.json",
"lint:fix": "tslint --project tsconfig.json --fix",
"build": "npm run lint && node ./util/build.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git@gitlab.gift.id:services/auth.git"
},
"author": "Aditya Kresna Permana",
"license": "ISC",
"dependencies": {
"@overnightjs/core": "^1.6.9",
"@overnightjs/logger": "^1.1.9",
"ajv": "^6.10.2",
"bcrypt": "^3.0.6",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"http-status-codes": "^1.3.2"
},
"devDependencies": {
"@ef-carbon/tspm": "^2.2.5",
"@types/ajv": "^1.0.0",
"@types/bcrypt": "^3.0.0",
"@types/compression": "0.0.36",
"@types/cors": "^2.8.5",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.0",
"@types/node": "^12.6.1",
"fs-extra": "^8.1.0",
"husky": "^3.0.0",
"nodemon": "^1.19.1",
"ts-node": "^8.3.0",
"ts-node-register": "^1.0.0",
"tsconfig-paths": "^3.8.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
}
}