-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.16 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
{
"name": "express-rest",
"version": "1.0.0",
"description": "A basic example of a rest API using Node and Express.js",
"main": "index.js",
"scripts": {
"start": "npm run server",
"dev": "cross-env PORT=5001 NODE_ENV=dev npm run server",
"server": "babel-watch index.js",
"test": "cross-env PORT=5002 NODE_ENV=test mocha --compilers js:babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndrewBogdanovTSS/express-rest.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AndrewBogdanovTSS/express-rest/issues"
},
"homepage": "https://github.com/AndrewBogdanovTSS/express-rest#readme",
"devDependencies": {
"@types/express": "^4.0.37",
"babel-cli": "6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-watch": "^2.0.7",
"cross-env": "^5.0.5",
"morgan": "^1.9.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.2",
"express": "^4.16.1",
"mocha": "^3.5.3",
"mongoose": "^4.11.13",
"should": "^13.1.0",
"sinon": "^4.0.0",
"supertest": "^3.0.0"
}
}