-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.03 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
{
"name": "test-app",
"version": "1.0.0",
"description": "Simple app to test rxjs flux pattern",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --port 9090 --progress --colors -p --config scripts/webpack.config.dev.js",
"build": "webpack --colors false --display minimal -p --config scripts/webpack.config.prod.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "hypercube software",
"license": "MIT",
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rxjs": "^6.6.3"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@reactivex/rxjs": "^6.6.3",
"babel-loader": "^8.1.0",
"css-loader": "^4.3.0",
"eslint": "^7.8.1",
"eslint-loader": "^4.0.2",
"html-webpack-plugin": "^4.4.1",
"less": "^3.12.2",
"less-loader": "^7.0.1",
"style-loader": "^1.2.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}