-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.11 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.11 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "sails-react-webpack",
"private": false,
"version": "0.2.0",
"description": "A Sails, React & Webpack boilerplate",
"engines": {
"node": "5.8.0",
"npm": ">= 3.7.3"
},
"keywords": [
"sails",
"react",
"webpack",
"boilerplate"
],
"dependencies": {
"assets-webpack-plugin": "^3.4.0",
"babel-core": "^6.21.0",
"bcrypt": "^1.0.2",
"colors": "^1.1.2",
"create-react-class": "^15.5.2",
"foreman": "^3.0.1",
"grunt": "0.4.5",
"grunt-contrib-clean": "0.6.0",
"grunt-contrib-concat": "0.5.1",
"grunt-contrib-copy": "0.5.0",
"grunt-contrib-jst": "0.6.0",
"grunt-contrib-uglify": "0.7.0",
"grunt-sails-linker": "~0.10.1",
"grunt-sync": "0.2.4",
"include-all": "~0.1.6",
"prop-types": "^15.5.8",
"rc": "1.0.1",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-redux": "^5.0.4",
"react-router": "^2.3.0",
"redux": "^3.6.0",
"webpack": "^1.13.0",
"xregexp": "^3.2.0"
},
"scripts": {
"dev": "node webpackDevServer",
"dist": "NODE_ENV=production webpack -p --config webpack.config.prod.js",
"postinstall": "NODE_ENV=production webpack -p --config webpack.config.prod.js"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/markmur/sails-react-webpack.git"
},
"author": "Mark Murray <mark@boxfish.com>",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.3.6",
"autoprefixer-loader": "^3.2.0",
"babel-loader": "^6.2.4",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.9",
"css-loader": "^0.23.1",
"enzyme": "^2.4.1",
"mocha": "^3.0.2",
"node-sass": "^3.4.2",
"precss": "^1.4.0",
"react-addons-test-utils": "^15.0.1",
"react-hot-loader": "^1.3.0",
"sass-loader": "^3.2.0",
"sinon": "^1.17.5",
"style-loader": "^0.13.1",
"webpack-dev-server": "^1.14.1"
}
}