-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.31 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
{
"name": "super-comic-slicer",
"version": "2.0.0",
"description": "An artist's long comic page cutter into their desired webcomic platform.",
"main": "index.tsx",
"scripts": {
"start": "webpack serve --config webpack.config.js",
"dev": "webpack serve --config webpack.dev.js",
"prod": "webpack --config webpack.prod.js",
"serve": "cross-env NODE_ENV=production && npm run prod && serve -s dist",
"build": "webpack --config webpack.prod.js",
"test": "echo 'testing not available'",
"stylelint": "stylelint \"src/**/*.scss\"",
"lint": "eslint \"src/**/*\""
},
"keywords": [
"cropper",
"webcomic"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 2 version"
]
},
"author": "Caroline Rozali",
"license": "MIT",
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.2",
"workbox-cacheable-response": "^7.0.0",
"workbox-core": "^7.0.0",
"workbox-expiration": "^7.0.0",
"workbox-routing": "^7.0.0",
"workbox-strategies": "^7.0.0",
"workbox-window": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"@types/file-saver": "^2.0.7",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"eslint": "^8.56.0",
"eslint-config-favoritemedium-typescript": "^2.10.0",
"html-webpack-plugin": "^5.6.0",
"postcss": "^8.4.33",
"postcss-loader": "^7.3.4",
"postcss-preset-env": "^9.3.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.69.7",
"sass-loader": "^13.3.3",
"style-loader": "^3.3.3",
"stylelint": "^16.1.0",
"stylelint-config-standard-scss": "^13.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"workbox-webpack-plugin": "^7.0.0"
}
}