-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
78 lines (78 loc) · 1.96 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
{
"name": "arduino-web-timers",
"homepage": "https://dbuezas.github.io/arduino-web-timers/",
"version": "0.1.0",
"private": false,
"license": "MIT",
"author": {
"name": "David Buezas",
"email": "david.buezas@gmail.com",
"url": "https://github.com/dbuezas/arduino-web-timers/"
},
"dependencies": {
"copy-to-clipboard": "^3.3.1",
"d3": "^6.7.0",
"esbuild-plugin-alias": "^0.2.1",
"esbuild-plugin-less": "^1.1.13",
"fraction.js": "^4.2.0",
"jotai": "^2.0.3",
"lodash-es": "^4.17.21",
"preact": "^10.13.1",
"raw.macro": "^0.7.0",
"react-syntax-highlighter": "^15.5.0",
"rsuite": "^4.10.1",
"@react-hook/size": "^2.1.1",
"esbuild": "^0.17.11"
},
"scripts": {
"start": "NODE_ENV=development WATCH=1 node script/build.mjs",
"start-prod": "NODE_ENV=production WATCH=1 node script/build.mjs",
"build": "NODE_ENV=production node script/build.mjs",
"check-types": "tsc --noEmit",
"upgrade": "npx npm-check -u",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"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": {
"typescript": "^4.9.5",
"@types/lodash": "^4.14.170",
"gh-pages": "^3.2.3",
"@types/d3": "^6.7.0",
"@types/lodash-es": "^4.17.6",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-syntax-highlighter": "^15.5.6",
"react": "^17.0.2",
"react-debounce-render": "^8.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3"
},
"overrides": {
"react-virtualized": {
"react": "$react",
"react-dom": "$react"
},
"react-resize-panel-ts": {
"react": "$react",
"react-dom": "$react"
}
}
}