forked from kobakazu0429/react-svg-drawer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.64 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
{
"name": "react-svg-drawer",
"version": "1.0.0",
"main": "src/index.ts",
"author": "kobakakzu0429 <[email protected]>",
"license": "MIT",
"scripts": {
"build": "webpack --color --progress --config ./config/webpack.config.prod.js",
"dev": "webpack-dev-server --config ./config/webpack.config.dev.js",
"lint": "tslint --fix -c ./tslint.json 'src/**/*{.ts,.tsx}'"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"yarn lint",
"git add"
]
},
"dependencies": {
"@reduxjs/toolkit": "^1.2.3",
"canvg": "^3.0.4",
"normalize.css": "^8.0.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.0.0",
"styled-components": "^5.0.0",
"ulid": "^2.3.0"
},
"devDependencies": {
"@types/node": "12.12.25",
"@types/react": "16.9.17",
"@types/react-dom": "16.9.4",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "5.1.3",
"@types/redux-logger": "^3.0.7",
"@types/styled-components": "^4.4.2",
"clean-webpack-plugin": "3.0.0",
"css-loader": "3.4.2",
"file-loader": "5.0.2",
"fork-ts-checker-webpack-plugin": "4.0.1",
"html-webpack-plugin": "3.2.0",
"prettier": "1.19.1",
"redux-logger": "^3.0.6",
"style-loader": "1.1.3",
"ts-loader": "6.2.1",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-loader": "3.5.4",
"tslint-plugin-prettier": "2.1.0",
"typescript": "3.7.5",
"url-loader": "3.0.0",
"webpack": "4.41.5",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.10.1",
"webpack-manifest-plugin": "2.2.0",
"webpack-merge": "4.2.2"
}
}