-
Notifications
You must be signed in to change notification settings - Fork 137
/
package.json
48 lines (48 loc) · 1.04 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
43
44
45
46
47
48
{
"name": "express-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prestart": "npm run -s build",
"start": "node dist/index.js",
"clean": "rimraf dist",
"build": "npm run clean && mkdir -p dist && babel src -s -D -d dist"
},
"author": "Bill Sourour (Dev Mastery)",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"mongodb": "^3.1.12",
"mongoose": "^5.4.4"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"faker": "^4.1.0",
"jest": "^23.6.0",
"regenerator-runtime": "^0.13.1",
"rimraf": "^2.6.3"
},
"jest": {
"verbose": true,
"testRegex": ".spec.js"
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"node": "10.8.0"
}
}
]
]
}
}