-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
{
"name": "plugin-purchaser",
"version": "1.0.0",
"description": "",
"main": "server.js",
"engines": {
"node": "12.16.3"
},
"scripts": {
"start": "node .",
"lint": "standard . --fix && standard ./routes/*.js --fix && standard ./models/*.js --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dino-Martinez/plugin-purchaser.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Dino-Martinez/plugin-purchaser/issues"
},
"homepage": "https://github.com/Dino-Martinez/plugin-purchaser#readme",
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-handlebars": "^5.3.2",
"helmet": "^4.6.0",
"method-override": "^3.0.0",
"mongoose": "^5.12.14",
"stripe": "^8.156.0"
},
"devDependencies": {
"nodemon": "^2.0.7",
"standard": "^16.0.3"
}
}