-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.8 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "colorace-editor-react",
"displayName": "ColorACE Screen Editor",
"description": "Online pixelart screen editor for an 8-bit personal micro-computer Tesla PMD 85",
"license": "MIT",
"version": "1.3.3",
"releaseYear": "2022",
"homepage": "https://pmd85.borik.net/colorace",
"author": {
"name": "Martin Bórik",
"email": "[email protected]",
"url": "https://github.com/mborik"
},
"private": true,
"repository": {
"type": "git",
"url": "[email protected]:mborik/ColorAceEditor.git"
},
"scripts": {
"bundle": "webpack --config ./webpack.config.js",
"clean": "rm -rf dist/*",
"dev": "webpack-dev-server --config ./webpack.config.js --host 0.0.0.0",
"dist": "cross-env NODE_ENV=production npm run bundle",
"start": "npm run dev",
"test": "exit 0"
},
"dependencies": {
"@blueprintjs/core": "^4.11.2",
"@blueprintjs/icons": "^4.6.3",
"@blueprintjs/popover2": "^1.7.2",
"@use-it/event-listener": "^0.1.7",
"classnames": "^2.3.2",
"core-js": "^3.25.5",
"dom4": "^2.1.5",
"normalize.css": "^8.0.1",
"pako": "^2.0.4",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-transition-group": "^4.4.1",
"scroller": "0.0.3",
"tslib": "~2.3.1",
"typescript-debounce-decorator": "^0.0.18",
"workbox-core": "^6.5.4",
"workbox-precaching": "^6.5.4",
"workbox-routing": "^6.5.4",
"workbox-sw": "^6.5.4"
},
"devDependencies": {
"@blueprintjs/node-build-scripts": "^5.2.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@types/node": "^12.7.2",
"@types/pako": "^2.0.0",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.8.5",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"autoprefixer": "^10.4.12",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"cssnano": "^5.1.13",
"eslint": "^8.24.0",
"eslint-plugin-import": "^2.26.0",
"fork-ts-checker-notifier-webpack-plugin": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"mini-css-extract-plugin": "^2.6.1",
"pkg.json-webpack-plugin": "^2.0.2",
"postcss": "^8.4.17",
"postcss-discard-comments": "^5.1.2",
"postcss-loader": "^7.0.1",
"sass-loader": "^13.0.2",
"source-map-loader": "^4.0.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.1",
"ts-transformer-optimize-const-enum": "^0.1.2",
"typescript": "^4.8.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-notifier": "^1.15.0",
"workbox-webpack-plugin": "^6.5.4"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}