-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "node-release-server",
"version": "1.1.0",
"description": "",
"main": "lib/server/index.js",
"scripts": {
"test": "echo \"Error: no test specified\"",
"build:client": "NODE_ENV=production webpack",
"build:server": "babel -s -d lib src",
"build": "npm run build:client && npm run build:server",
"prepublish": "npm run build && npm run test",
"start": "node ./lib/server/index.js"
},
"author": "Jason Walton",
"license": "MIT",
"dependencies": {
"express": "^4.13.4",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.2.1",
"lru-cache": "^4.0.0",
"moment": "^2.11.2",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"serialize-javascript": "^1.1.2"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.4.3",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-react": "^3.16.1",
"request": "^2.69.0",
"webpack": "^1.12.13"
}
}