-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 988 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 988 Bytes
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
{
"name": "spiritstonegenerator",
"version": "0.0.1",
"description": "Getting all the spirit stones.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"mon": "nodemon",
"debug": "nodemon --inspect-brk=0.0.0.0:9229 --nolazy",
"lint": "eslint --cache .",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lobabob/SpiritStoneGenerator.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lobabob/SpiritStoneGenerator/issues"
},
"homepage": "https://github.com/lobabob/SpiritStoneGenerator#readme",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.10.0",
"nodemon": "^1.17.3"
},
"dependencies": {
"express": "^4.16.3",
"request": "^2.85.0",
"request-promise-native": "^1.0.5",
"sequelize": "^4.37.6"
},
"optionalDependencies": {
"mysql2": "^1.5.3"
}
}