-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "output.jsbin.com",
"version": "1.0.0",
"description": "Output for bins, via the API then cached to disk",
"engines": {
"node": "8.x.x"
},
"now": {
"dotenv": ".env.production",
"name": "output-jsbin",
"alias": "output-jsbin"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "GIT_REV=$(git rev-parse HEAD) NODE_ENV=development nodemon",
"start": "NODE_ENV=production node .",
"deploy": "now -e GIT_REV=$(git rev-parse HEAD) && now alias"
},
"keywords": [],
"author": "Remy Sharp",
"license": "MIT",
"dependencies": {
"@remy/envy": "^3.1.1",
"bin-to-file": "^1.0.5",
"express": "^4.16.2",
"http-errors": "^1.6.2",
"knox": "^0.9.2",
"node-fetch": "^1.7.3"
},
"devDependencies": {
"@remy/eslint": "^1.3.0",
"babel-eslint": "^7.2.3",
"eslint": "^4.17.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.42.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-react": "^7.6.1"
}
}