-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.84 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "cast",
"private": true,
"version": "0.0.0",
"description": "a Sails application",
"keywords": [],
"dependencies": {
"autoprefixer": "^7.1.1",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.4",
"ejs": "2.3.4",
"file-loader": "^0.10.1",
"grunt": "1.0.1",
"grunt-contrib-clean": "1.0.0",
"grunt-contrib-coffee": "1.0.0",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-cssmin": "1.0.1",
"grunt-contrib-jst": "1.0.0",
"grunt-contrib-less": "1.3.0",
"grunt-contrib-uglify": "1.0.1",
"grunt-contrib-watch": "1.0.0",
"grunt-sails-linker": "~0.10.1",
"grunt-sync": "0.5.2",
"handlebars": "^4.0.10",
"history": "^4.6.3",
"html-loader": "^0.4.5",
"include-all": "^1.0.0",
"node-sass": "^4.5.3",
"postcss-loader": "^1.3.3",
"rc": "1.0.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-hot-loader": "^3.0.0-beta.7",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-redux": "^5.0.0-alpha.6",
"redux": "^3.7.0",
"redux-thunk": "^2.2.0",
"redux-devtools-extension": "^2.13.2",
"sails": "~0.12.13",
"sails-disk": "~0.10.9",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"uglify-js": "^2.8.10",
"uglifyjs-webpack-plugin": "^0.3.0",
"webpack": "^2.2.1"
},
"scripts": {
"debug": "node debug app.js",
"dev": "npm run build:dev & npm run server:dev",
"build:dev": "BABEL_ENV=dev webpack-dev-server --hot --inline --watch --host 0.0.0.0",
"server:dev": "nodemon app.js",
"start": "npm run build:prod & npm run server:prod",
"build:prod": "node node_modules/webpack/bin/webpack.js -p --progress --env=prod",
"server:prod": "node app.js"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/colintoh/cast.git"
},
"author": "colintoh",
"license": "ISC",
"devDependencies": {
"babel-preset-react-hmre": "^1.1.1",
"browser-sync": "^2.18.8",
"browser-sync-webpack-plugin": "^1.1.4",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-loader": "^1.6.3",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.1",
"html-webpack-plugin": "^2.28.0",
"react-addons-test-utils": "^15.4.2",
"webpack-dev-server": "^2.4.2"
},
"bugs": {
"url": "https://github.com/colintoh/cast/issues"
},
"homepage": "https://github.com/colintoh/cast#readme"
}