This repository has been archived by the owner on Sep 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.48 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
{
"name": "node9000",
"author": "Daniel Davidson",
"description": "node9000",
"url" : "https://github.com/da-n/node9000",
"version": "0.0.2",
"private": false,
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:dev": "webpack-dev-server --inline --content-base public/ --history-api-fallback",
"start:prod": "npm run build && node server.bundle.js",
"build:client": "webpack",
"build:server": "webpack --config webpack.server.config.js",
"build": "npm run build:client && npm run build:server",
"test": "./node_modules/.bin/mocha --reporter spec",
"css": "node-sass --source-map true --output-style compressed scss/style.scss --output public/css",
"css:watch": "npm run css && node-sass --source-map true --output-style compressed --watch scss/style.scss --output public/css"
},
"dependencies": {
"compression": "^1.6.2",
"express": "~4.13.1",
"morgan": "~1.6.1",
"if-env": "^1.0.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-router": "^2.0.0",
"serve-favicon": "~2.3.0"
},
"devDependencies": {
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"request": "^2.74.0",
"chai": "^3.5.0",
"mocha": "^3.0.1",
"node-sass": "^3.7.0",
"http-server": "^0.8.5",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
}
}