-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 888 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 888 Bytes
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
{
"name": "fin_tech_typescript",
"version": "1.0.0",
"description": "Code screen example",
"main": "index.js",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"start:dev": "nodemon dist/index.js",
"build:dev": "tsc --watch --preserveWatchOutput",
"dev": "concurrently 'npm:build:dev' 'npm:start:dev'",
"test": "mocha ./tests/all_api_tests.js",
"unit": "mocha ./tests/all_api_tests.js",
"coverage": "nyc mocha ./tests/all_api_tests.js",
"newtest": "nyc mocha ./tests/all_api_tests.js"
},
"author": "Mike Klepper",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"helmet": "^4.4.1"
},
"devDependencies": {
"@types/express": "^4.17.3",
"chai": "^4.3.0",
"chai-http": "^4.3.0",
"concurrently": "^5.1.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.2",
"nyc": "^15.1.0"
}
}