-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·38 lines (38 loc) · 965 Bytes
/
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
{
"name": "udacity-c2-basic-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha -r ts-node/register src/**/*.tests.ts",
"dev": "ts-node-dev ./src/server.ts",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grutt/udacity-c2-basic-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/grutt/udacity-c2-basic-server/issues"
},
"homepage": "https://github.com/grutt/udacity-c2-basic-server#readme",
"devDependencies": {
"@types/bluebird": "^3.5.33",
"@types/chai": "^4.2.14",
"@types/express": "^4.17.9",
"@types/mocha": "^5.2.7",
"@types/node": "^11.15.42",
"chai": "^4.2.0",
"js-yaml": "^3.14.1",
"mocha": "^6.2.3",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.1.1",
"tslint": "^5.20.1",
"typescript": "^3.9.7"
},
"dependencies": {
"express": "^4.17.1"
}
}