-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.7 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
{
"name": "btb2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": "",
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@hot-loader/react-dom": "^17.0.0-rc.2",
"@types/chrome": "0.0.125",
"@types/react": "^16.14.21",
"@types/react-dom": "^18.2.4",
"@types/styled-components": "^5.1.26",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.2.1",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.5.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "^6.2.0",
"husky": "^8.0.3",
"prettier": "^2.5.1",
"react-hot-loader": "^4.13.0",
"ts-loader": "^8.0.5",
"typescript": "^4.5.4",
"url-loader": "^4.1.1",
"webpack": "^5.2.0",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^4.7.2"
},
"dependencies": {
"html-webpack-plugin": "^5.5.1",
"konva": "^8.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-konva": "^18.2.5",
"recoil": "^0.7.7",
"styled-components": "^5.3.8",
"use-image": "^1.1.1"
},
"scripts": {
"dev": "cross-env NODE_ENV=development webpack serve",
"start": "cross-env NODE_ENV=production webpack --watch --progress",
"build": "cross-env NODE_ENV=production webpack",
"prepare": "husky install",
"pre-commit": "lint-staged",
"test": ""
}
}