-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.87 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": "mock-cve-data",
"version": "0.0.1",
"description": "API for generating mock cve data",
"main": "dist/server.js",
"bin": "dist/server.js",
"scripts": {
"start": "node dist/server.js",
"build": "tsc",
"postbuild": "shx cp -R src/cve_path_json dist && shx cp -R src/views dist",
"watch": "nodemon src/server.ts",
"test": "jest --coverage",
"view:cov": "serve coverage/lcov-report",
"clean": "rm -rf dist",
"lint": "eslint '*/**/*.ts'",
"lint:fix": "eslint '*/**/*.ts' --fix",
"test:watch": "jest --coverage --watchAll",
"view:coverage": "serve coverage/lcov-report",
"script:cleancve": "ts-node src/scripts/clean_cve_json.ts",
"script:historic": "ts-node src/scripts/generate_historic_crashes/generate_historic_crashes.ts"
},
"author": "UrbanOS",
"dependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^25.2.3",
"@types/node": "^14.17.15",
"@types/source-map-support": "^0.5.4",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"express": "^4.17.1",
"jest-each": "^27.2.5",
"moment": "^2.29.1",
"pug": "^3.0.2",
"source-map-support": "^0.5.20",
"typescript": "^3.9.10",
"uuid": "^8.3.2"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.1",
"jest": "^26.6.3",
"jest-junit": "^12.2.0",
"nodemon": "^2.0.12",
"prettier": "^2.4.0",
"serve": "^11.3.2",
"shx": "^0.3.3",
"supertest": "^6.1.6",
"ts-jest": "^26.5.6",
"ts-node": "^8.10.2",
"wait-for-expect": "^3.0.2"
}
}