forked from rocktimsaikia/Contribute-101
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 824 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
34
{
"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": "^3.0.2",
"express": "^4.17.1",
"reload": "^3.0.4"
},
"engines": {
"node": "8.12.0",
"npm": "6.4.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.20.2",
"mocha": "^7.1.1",
"nodemon": "^2.0.3",
"prettier": "^2.0.4",
"supertest": "^4.0.2"
}
}