-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.19 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.19 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
{
"private": true,
"scripts": {
"start": "webpack-dev-server",
"build": "webpack",
"test:live": "webpack-dev-server --config ./webpack.tests.js",
"pretest": "fable-splitter --config splitter.tests.js",
"build:test": "webpack --config webpack.tests.js",
"test": "mocha ./tests-js"
},
"dependencies": {
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "^7.15.4",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"core-js": "^3.17.3",
"css-loader": "^3.6.0",
"dotenv-webpack": "^1.8.0",
"fable-compiler": "^2.13.0",
"fable-loader": "^2.1.9",
"fable-splitter": "^2.2.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.2",
"mini-css-extract-plugin": "^0.9.0",
"mocha": "^10.2.0",
"sass": "^1.39.2",
"sass-loader": "^8.0.2",
"style-loader": "^1.3.0",
"terser": "^4.8.0",
"webpack": "^5.52.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^4.2.0"
}
}