-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 857 Bytes
/
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
{
"name": "wordly",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "yarn build:web && yarn build:sw",
"build:web": "esbuild src/index.tsx --define:process.env.NODE_ENV=\\\"production\\\" --inject:src/jsx-shim.js --jsx-factory=jsx --bundle --outfile=public/build/app.js --minify --sourcemap --target=chrome80,firefox65,safari11,edge18",
"build:sw": "workbox generateSW workbox-config.js"
},
"dependencies": {
"@anatoliygatt/use-prefers-color-scheme": "^1.0.0",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"focus-trap-react": "^8.9.1",
"prop-types": "^15.8.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"workbox-precaching": "^6.4.2"
},
"devDependencies": {
"esbuild": "^0.14.11",
"typescript": "^4.5.4",
"workbox-cli": "^6.4.2"
}
}