-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
43
44
45
46
47
48
49
50
51
{
"name": "stupid-questions",
"version": "0.1.0",
"description": "No question too stupid.",
"main": "index.js",
"scripts": {
"knex": "knex",
"start": "node-inspector --web-port=8888 & nodemon --debug server.js",
"test": "tape 'tests/**/*.test.js' -r babel-register | tap-spec",
"heroku-postbuild": "npm run knex migrate:latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nikau-2016/stupid-questions.git"
},
"keywords": [
"stupid",
"questions"
],
"author": "Nikau 2016",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nikau-2016/stupid-questions/issues"
},
"homepage": "https://github.com/nikau-2016/stupid-questions#readme",
"devDependencies": {
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"eslint": "^3.4.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.2.0",
"eslint-plugin-standard": "^2.0.0",
"node-inspector": "^0.12.8",
"nodemon": "^1.10.2",
"sqlite3": "^3.1.4"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"dependencies": {
"body-parser": "^1.15.2",
"cors": "^2.8.0",
"express": "^4.14.0",
"knex": "^0.11.10",
"pg": "^6.1.0"
}
}