forked from rubyblackbelt/opal-webpack-loader-example-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.92 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
{
"name": "webpal",
"private": true,
"engines": {
"node": "^10.4.0",
"yarn": "^1.7.0"
},
"dependencies": {
"history": "^4.7.2",
"jquery": "^3.3.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-loadable": "^5.4.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react_ujs": "^2.4.4"
},
"description": "This README would normally document whatever steps are necessary to get the application up and running.",
"version": "1.0.0",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "bundle exec opal-webpack-compile-server kill; bundle exec opal-webpack-compile-server && webpack --watch; bundle exec opal-webpack-compile-server kill",
"start": "bundle exec opal-webpack-compile-server kill; bundle exec opal-webpack-compile-server && bundle exec webpack-serve --config ./config/webpack/development.js; bundle exec opal-webpack-compile-server kill",
"build": "bundle exec opal-webpack-compile-server kill; bundle exec opal-webpack-compile-server && webpack --config=config/webpack/production.js; bundle exec opal-webpack-compile-server kill",
"cordova": "bundle exec opal-webpack-compile-server kill; bundle exec opal-webpack-compile-server && webpack --config=config/webpack/cordova.js; bundle exec opal-webpack-compile-server kill"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"chokidar": "^2.0.3",
"compression-webpack-plugin": "^1.1.11",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"json-stringify-safe": "^5.0.1",
"node-sass": "^4.9.0",
"opal-webpack-loader": "^0.2.0",
"opal-webpack-resolver-plugin": "^0.1.0",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"webpack": "^4.11.1",
"webpack-cli": "^3.0.2",
"webpack-manifest-plugin": "^2.0.3",
"webpack-serve": "^1.0.2"
}
}