-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.38 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
49
50
51
52
53
54
55
56
57
{
"name": "nodejs-boilerplate",
"version": "0.0.0",
"description": "A nodejs boilerplate, so that we can understand each other.",
"main": "src/index.js",
"scripts": {
"test": "ava test --verbose --watch",
"remove-ava-cache": "npx ava --reset-cache",
"dev": "backpack dev",
"production": "backpack build && node ./build/main.js --production",
"build": "backpack build",
"start": "backpack dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unierr/nodejs-boilerplate.git"
},
"keywords": [
"nodejs",
"boilerplate",
"express",
"mongoose",
"mongodb"
],
"author": "Amirali Ahmadi",
"license": "ISC",
"bugs": {
"url": "https://github.com/unierr/nodejs-boilerplate/issues"
},
"homepage": "https://github.com/unierr/nodejs-boilerplate#readme",
"dependencies": {
"async": "^2.6.2",
"backpack-core": "^0.8.3",
"bcrypt": "^3.0.4",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.4",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.0",
"lodash": "^4.17.11",
"mongoose": "^5.4.16",
"mongoose-timestamp": "^0.6.0",
"morgan": "^1.9.1",
"validator": "^10.11.0"
},
"devDependencies": {
"@babel/register": "^7.0.0",
"ava": "^1.2.1",
"supertest": "^3.4.2"
},
"ava": {
"require": [
"@babel/register"
],
"inherit": true
}
}