This repository has been archived by the owner on Jan 1, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.63 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
52
53
{
"name": "react-engine-template",
"version": "0.0.0",
"description": "A template for react-engine.",
"author": "Mark <mark@remarkablemark.org>",
"scripts": {
"postinstall": "scripts/npm/postinstall",
"start": "NODE_ENV=production npm-run-all clean production:*",
"dev": "npm-run-all --parallel development:*",
"clean": "rm -rf build",
"production:build": "webpack --config webpack/production.config.js",
"production:server": "node bin/www",
"development:server": "nodemon bin/www",
"development:wds": "webpack-dev-server --config webpack/development.config.js",
"lint": "eslint --ignore-path .gitignore --ext .js,.jsx ."
},
"dependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.14.0",
"body-parser": "^1.13.2",
"cookie-parser": "^1.3.5",
"css-loader": "^0.23.1",
"debug": "^2.2.0",
"express": "^4.13.1",
"extract-text-webpack-plugin": "^1.0.1",
"history": "^4.0.0",
"json-loader": "^0.5.4",
"morgan": "^1.6.1",
"node-sass": "^3.10.1",
"npm-run-all": "^3.1.2",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-engine": "^4.1.0",
"react-router": "^2.8.0",
"sass-loader": "^4.0.2",
"serve-favicon": "^2.3.0",
"webpack": "^1.13.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-preset-react-hmre": "^1.1.1",
"eslint": "^3.12.2",
"eslint-plugin-react": "^6.8.0",
"nodemon": "^1.9.1",
"style-loader": "^0.13.1",
"webpack-dev-server": "^1.14.1"
},
"private": true,
"license": "MIT"
}