This repository has been archived by the owner on Jul 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
77 lines (77 loc) · 2.28 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "atorch-console",
"private": true,
"scripts": {
"build": "webpack --mode production",
"deploy": "rimraf dist && npm run build && gh-pages -d dist",
"lint": "eslint --fix --ext .ts,.tsx src/**/*",
"start": "webpack-dev-server",
"test": "nyc mocha"
},
"dependencies": {
"bootstrap": "^4.5.2",
"classnames": "^2.2.6",
"connected-react-router": "^6.8.0",
"domready": "^1.0.8",
"history": "^4.10.1",
"immer": "^7.0.9",
"lodash-es": "^4.17.15",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router": "^5.2.0",
"reactstrap": "^8.5.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"typescript-fsa": "^3.0.0",
"typescript-fsa-reducers": "^1.2.2",
"typescript-fsa-redux-thunk": "^2.10.0"
},
"devDependencies": {
"@nice-labs/typed-css-modules": "^1.3.0",
"@types/bootstrap": "^4.5.0",
"@types/chai": "^4.2.12",
"@types/classnames": "^2.2.10",
"@types/domready": "^1.0.0",
"@types/eslint": "^7.2.2",
"@types/gh-pages": "^3.0.0",
"@types/history": "^4.7.7",
"@types/lodash-es": "^4.17.3",
"@types/mini-css-extract-plugin": "^0.9.1",
"@types/mocha": "^8.0.3",
"@types/prettier": "^2.1.0",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/react-router": "^5.1.8",
"@types/reactstrap": "^8.5.1",
"@types/rimraf": "^3.0.0",
"@types/web-bluetooth": "0.0.9",
"@types/webpack": "^4.41.22",
"@types/webpack-dev-server": "^3.11.0",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"chai": "^4.2.0",
"chai-bytes": "^0.1.2",
"css-loader": "^4.3.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-react": "^7.20.6",
"esm": "^3.2.25",
"html-webpack-partials-plugin": "^0.6.1",
"html-webpack-plugin": "^4.4.1",
"mini-css-extract-plugin": "^0.11.1",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"prettier": "^2.1.1",
"react-redux": "^7.2.1",
"rimraf": "^3.0.2",
"sass.js": "^0.11.1",
"sassjs-loader": "^2.0.0",
"ts-loader": "^8.0.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}