-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·50 lines (50 loc) · 1.46 KB
/
package.json
File metadata and controls
executable file
·50 lines (50 loc) · 1.46 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
{
"name": "rails-react-drag-drop",
"version": "1.0.0",
"description": "Rails and React drag and drop Tutorial",
"main": "webpack.config.js",
"engines": {
"node": "7.9.0"
},
"scripts": {
"heroku-postbuild": "NODE_ENV=production npm run webpack -- -p",
"test": "node_modules/.bin/karma start karma.conf.js",
"start": "yarn run webpack -- --watch",
"webpack": "node_modules/.bin/webpack --config ./react/webpack.config.js"
},
"author": "Jesse Chamberlain",
"license": "MIT",
"dependencies": {
"babel-core": "^6.5.1",
"babel-loader": "^6.2.2",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-sortable-hoc": "^0.6.7",
"webpack": "^2.7.0"
},
"devDependencies": {
"enzyme": "^2.9.1",
"isparta-loader": "2.0.0",
"jasmine-ajax": "3.2.0",
"jasmine-core": "^2.4.1",
"jasmine-enzyme": "^3.6.1",
"jquery": "^3.2.1",
"karma": "^0.13.22",
"karma-coverage": "0.5.5",
"karma-jasmine": "^0.3.8",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "2.0.1",
"node-sass": "^4.5.1",
"phantomjs-prebuilt": "^2.1.14",
"react-addons-test-utils": "^15.6.0",
"redux-devtools": "3.2.0",
"sass-loader": "^6.0.3",
"static-site-generator-webpack-plugin": "^3.4.1",
"whatwg-fetch": "^2.0.3"
}
}