-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 871 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
{
"name": "express-sample",
"version": "1.0.0",
"description": "A simple Node.js environment to build a server with express",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"start": "node ./out/index",
"serve": "nodemon ./out/index localhost 3000",
"test": "mocha --opts mocha.opts",
"test:auto": "mocha --opts mocha.opts --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dalfons0/express-sample.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Dalfons0/express-sample/issues"
},
"homepage": "https://github.com/Dalfons0/express-sample#readme",
"dependencies": {
"express": "^4.15.2"
},
"devDependencies": {
"@types/chai": "^3.5.1",
"@types/express": "^4.0.35",
"@types/mocha": "^2.2.41",
"chai": "^3.5.0"
}
}