-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 2.09 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
{
"private": true,
"scripts": {
"start-fable": "cd src/Frontend/src/Frontend && dotnet fable webpack-dev-server --port free -- --config ../../webpack.config.js",
"build-fable": "cd src/Frontend/src/Frontend && dotnet fable webpack --port free -- --config ../../webpack.config.js -p",
"build-tests": "cd src/Frontend/src/Tests.Frontend && dotnet fable webpack --port free -- --config ../../webpack.config.tests.js",
"test": "phantomjs ./node_modules/mocha-phantomjs-core/mocha-phantomjs-core.js ./src/Frontend/tests.html tap",
"sass": "node-sass ./src/Frontend/css/main.scss ./src/Frontend/css/Disco_generated.css",
"start": "concurrently -k -p \" \" \"npm run start-fable\" \"npm run sass && npm run sass -- -w\"",
"build": "concurrently -p \" \" \"npm run build-fable\" \"npm run sass\""
},
"devDependencies": {
"@types/jquery": "^3.2.12",
"@types/react": "^16.0.5",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"concurrently": "^3.5.0",
"core-js": "^2.5.1",
"css-loader": "^0.28.7",
"expect.js": "^0.3.1",
"fable-loader": "^1.1.6",
"fable-utils": "^1.0.6",
"less": "^2.7.2",
"loglevel": "^1.5.0",
"mocha": "^3.5.3",
"mocha-phantomjs-core": "^2.1.2",
"node-sass": "^4.5.3",
"phantomjs-prebuilt": "^2.1.15",
"remotedev": "^0.2.7",
"style-loader": "^0.18.2",
"webpack": "^3.5.6",
"webpack-dev-server": "^2.8.1"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"dom-to-image": "^2.5.2",
"fixed-data-table": "^0.6.4",
"js-tree": "^1.1.0",
"rc-slider": "^8.3.1",
"react": "^15.6.1",
"react-color": "^2.13.8",
"react-dom": "^15.6.1",
"react-grid-layout": "^0.15.2",
"react-input-slider": "^4.0.1",
"react-notification-system": "^0.2.15",
"react-rangeslider": "^2.2.0",
"react-select": "^1.0.0-rc.10",
"react-skylight": "^0.4.2",
"react-sortable-hoc": "^0.6.8",
"react-switch-case": "^1.0.3"
}
}