-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "ddw-external-api",
"version": "1.4.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"grunt": "grunt",
"dev": "npm i && npm run grunt && ts-node-dev ./src/server.ts",
"start": "node ./dist/server.js",
"prod": "npm run grunt && npm run build && npm run start",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.11",
"@types/json2csv": "^4.2.0",
"@types/node": "^10.17.14",
"grunt": "^1.3.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.1",
"tslint": "^6.1.3",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^4.1.3"
},
"dependencies": {
"apollo-server-express": "^2.19.2",
"body-parser": "^1.19.0",
"bootstrap": "^4.6.0",
"csv-writer": "^1.6.0",
"ddos": "^0.2.1",
"express": "^4.17.1",
"graphql": "^14.5.8",
"husky": "^4.3.8",
"pg-promise": "^8.5.3",
"xml-js": "^1.6.11"
}
}