-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.51 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
{
"name": "smooth-thumbnails",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/css": "^11.9.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"ahooks": "^3.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"react-use": "^17.4.0",
"rooks": "^6.0.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "REACT_APP_ENVIRONMENT=DEV PORT=4000 react-scripts start",
"build": "npm run bundle",
"bundle": "NODE_ENV=development parcel build src/index.js --no-optimize --no-source-maps; parcel build --no-source-maps src/toggleApp/*",
"start-for-ext": "NODE_ENV=development parcel watch src/index.js --no-source-maps; parcel watch --no-source-maps src/toggleApp/*",
"bundle:prod": "parcel build src/index.js --no-source-maps; parcel build --no-source-maps src/removeApp.js",
"bundleAndCopy": "npm run bundle; xclip -sel clip dist/index.js ",
"bundleAndServe": "npm run bundle; npm run serve",
"serve": "PORT=4200 serve -s dist"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"parcel": "^2.6.2",
"process": "^0.11.10",
"serve": "^14.0.1"
}
}