forked from rocktimsaikia/Contribute-101
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 785 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": "contribute101",
"version": "1.0.0",
"description": "A simple project for the first time open source contributors",
"main": "server.js",
"scripts": {
"start": "nodemon server.js -e ejs,js,css",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "mocha tests/*.js --exit"
},
"author": "Rocktim Saikia",
"license": "MIT",
"dependencies": {
"ejs": "^2.6.1",
"express": "^4.16.4",
"reload": "^3.0.2"
},
"engines": {
"node": "8.12.0",
"npm": "6.4.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.1",
"nodemon": "^1.19.3",
"prettier": "^1.16.4",
"supertest": "^4.0.2"
}
}