-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.08 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
{
"name": "nu-reference-storage-service-node",
"version": "1.0.0",
"description": "Network Update Reference Storage Service using Node.js Express Server with Typescript",
"main": "src/app.ts",
"type": "commonjs",
"scripts": {
"audit:ci": "audit-ci --config ./audit-ci.json",
"dev": "nodemon src/app.ts",
"build": "tsc",
"start": "node ./dist/app.js",
"test": "node_modules/.bin/mocha --exit \"src/*.spec.ts\""
},
"author": "General Electric Company",
"license": "Apache-2.0",
"dependencies": {
"@types/mime-types": "^2.1.1",
"@types/uuid": "^8.3.1",
"express": "^4.17.1",
"http-status-codes": "^2.1.4",
"mime-types": "^2.1.33",
"morgan": "^1.10.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/express": "^4.17.13",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"@types/supertest": "^2.0.11",
"audit-ci": "^6.6.1",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"nodemon": "^2.0.14",
"supertest": "^6.1.6",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}