-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.06 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
{
"name": "wind-vis",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"build": "webpack --config webpack.prod.js",
"start": "webpack serve --open --config webpack.dev.js",
"start-ext": "webpack serve --open --config webpack.dev.js --host 0.0.0.0",
"profile": "webpack --config webpack.prod.js --profile --json > stats.json",
"stats": "webpack-bundle-analyzer stats.json"
},
"keywords": [],
"author": "Alistair McKelvie",
"license": "ISC",
"sideEffects": [
"*.css"
],
"devDependencies": {
"@types/enzyme": "^3.10.10",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^27.0.2",
"@types/react-loadable": "^5.5.6",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.5.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^8.2.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.3.1",
"lodash": "^4.17.19",
"npm": "^8.3.2",
"prettier": "^2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"raw-loader": "^4.0.2",
"source-map-loader": "^3.0.0",
"style-loader": "^3.3.1",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"webpack": "^5.64.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0",
"webpack-merge": "^5.8.0",
"worker-loader": "^3.0.8"
},
"dependencies": {
"@types/luxon": "^2.0.7",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@types/react-redux": "^7.1.20",
"axios": "^0.24.0",
"eslint-webpack-plugin": "^3.1.1",
"luxon": "^2.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-loadable": "^5.5.0",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"typestyle": "^2.1.0"
}
}