-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "fast-reviewer",
"version": "1.0.0",
"description": "A react SPA starter",
"type": "module",
"scripts": {
"dev": "rimraf dist && cross-env NODE_ENV=development rollup -c --watch",
"build": "rimraf dist && cross-env NODE_ENV=production rollup -c"
},
"keywords": [
"react",
"spa",
"typescript"
],
"author": "cchaonie",
"engines": {
"node": ">=16.7.0"
},
"license": "MIT",
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tslib": "^2.7.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-html": "^1.0.4",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-typescript": "^12.1.0",
"@types/chrome": "^0.0.278",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"postcss": "^8.4.47",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"rollup-plugin-dev": "^2.0.5",
"rollup-plugin-postcss": "^4.0.2",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.3"
}
}