-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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
54
55
56
{
"name": "parse-react-sample",
"version": "0.0.1",
"description": "Todo app made with ReactJS and ParseReact",
"repository": {
"type": "git",
"url": "https://github.com/kemcake/parse-react-sample"
},
"license": "MIT",
"browser": {},
"devDependencies": {
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.8.0",
"eslint-plugin-react": "^5.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.16.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2",
"less": "^2.3.1",
"less-loader": "^2.2.3",
"file-loader": "^0.9.0",
"redbox-react": "^1.2.10",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4"
},
"dependencies": {
"express": "^4.13.4",
"history": "^2.1.1",
"lodash": "^4.11.1",
"parse": "1.6.14",
"parse-react": "^0.5.2",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-router": "^2.3.0"
},
"scripts": {
"clean": "rimraf dist",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack",
"start": "node devServer.js",
"lint": "eslint app",
"validate": "npm ls"
},
"pre-commit": [
"lint"
]
}