-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1 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": "hackathon-starter",
"version": "6.1.0",
"description": "A boilerplate for Node.js web applications",
"repository": {
"type": "git",
"url": "https://github.com/sahat/hackathon-starter.git"
},
"license": "MIT",
"author": "Sahat Yalkabov",
"contributors": [
"Yashar Fakhari (https://github.com/YasharF)"
],
"scripts": {
"start": "node app.js",
"test": "nyc mocha --timeout=10000 --exit",
"lint": "eslint \"**/*.js\""
},
"dependencies": {
"express": "4.17.1",
"express-handlebars": "5.3.1",
"cross-env": "7.0.3",
"reveal.js": "4.3.0",
"minimist": "1.2.8",
"minimatch": "6.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"sinon": "^9.2.3",
"supertest": "^6.0.1"
},
"engines": {
"node": ">=10.23.1",
"npm": ">=6.14.10"
}
}