-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.88 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "hot-typescript",
"version": "0.1.0",
"license": "dunno",
"scripts": {
"analyze": "NODE_ENV=production node tools/analyze.js",
"lint": "eslint --project .",
"lint:fix": "eslint --fix . --ext .ts,.tsx src",
"start": "webpack serve --mode development --hot",
"build": "webpack --mode production"
},
"dependencies": {
"@types/eslint": "^7.2.8",
"@types/history": "^4.7.8",
"@types/node": "^14.14.37",
"@types/node-sass": "^4.11.1",
"@types/postcss-calc": "^7.0.0",
"@types/postcss-import": "^12.0.0",
"@types/prettier": "^2.2.1",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-hot-loader": "^4.1.1",
"@types/react-router-dom": "^5.1.7",
"@types/react-transition-group": "^4.4.1",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"autoprefixer": "^10.2.4",
"axios": "^0.21.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"history": "^5.0.0",
"inversify": "^5.0.5",
"mobx": "^6.1.8",
"mobx-react": "^7.1.0",
"mobx-react-lite": "^3.2.0",
"node-sass": "^5.0.0",
"postcss": "^8.2.6",
"postcss-calc": "^8.0.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^14.0.0",
"postcss-nested": "^5.0.3",
"postcss-nesting": "^7.0.1",
"postcss-selector-not": "^5.0.0",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hot-loader": "^4.13.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.4.1",
"ts-loader": "^8.1.0",
"typescript": "^4.2.3",
"webpack": "^5.30.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
}
}