-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
101 lines (101 loc) · 4.42 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"private": true,
"name": "@power-playground/app",
"version": "0.1.0",
"description": "Power playground application.",
"repository": "[email protected]:Power-Playground/app.git",
"author": "YiJie <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"serve": "vite",
"build": "vite build",
"build:watch": "vite build --watch",
"build:replacer": "pnpm --dir ./vite-plugins/replacer build",
"preview": "vite preview",
"bootstrap": "node scripts/bootstrap.mjs"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/helper-plugin-utils": "^7.22.5",
"@power-playground/core": "workspace:*",
"@types/babel__helper-plugin-utils": "^7.10.0",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.2",
"@types/node": "^18.16.20",
"@types/ramda": "^0.29.3",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitejs/plugin-react": "^4.0.4",
"@vscode/codicons": "^0.0.33",
"chai": "^4.3.10",
"dotenv": "^16.3.1",
"dprint": "^0.41.0",
"esbuild-register": "^3.5.0",
"eslint": "^8.44.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"fast-glob": "^3.3.1",
"mocha": "^10.2.0",
"ramda": "^0.29.0",
"react-toastify": "^9.1.3",
"sass": "^1.69.5",
"sentinel-js": "^0.0.7",
"typescript": "^5.3.0-beta",
"vite": "^4.4.0",
"vite-bundle-analyzer": "^0.0.1",
"vite-plugin-cdn2": "^0.12.0",
"vite-plugin-inspect": "^0.7.38"
},
"engines": {
"node": ">=18.16.0 <=21.1.0"
},
"pnpm": {
"overrides": {
"array-buffer-byte-length": "npm:@nolyfill/array-buffer-byte-length@latest",
"array-includes": "npm:@nolyfill/array-includes@latest",
"array.from": "npm:@nolyfill/array.from@latest",
"array.prototype.find": "npm:@nolyfill/array.prototype.find@latest",
"array.prototype.findlastindex": "npm:@nolyfill/array.prototype.findlastindex@latest",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@latest",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@latest",
"arraybuffer.prototype.slice": "npm:@nolyfill/arraybuffer.prototype.slice@latest",
"function-bind": "npm:@nolyfill/function-bind@latest",
"function.prototype.name": "npm:@nolyfill/function.prototype.name@latest",
"get-symbol-description": "npm:@nolyfill/get-symbol-description@latest",
"globalthis": "npm:@nolyfill/globalthis@latest",
"gopd": "npm:@nolyfill/gopd@latest",
"has": "npm:@nolyfill/has@latest",
"has-property-descriptors": "npm:@nolyfill/has-property-descriptors@latest",
"has-proto": "npm:@nolyfill/has-proto@latest",
"is-array-buffer": "npm:@nolyfill/is-array-buffer@latest",
"is-shared-array-buffer": "npm:@nolyfill/is-shared-array-buffer@latest",
"object-keys": "npm:@nolyfill/object-keys@latest",
"object.assign": "npm:@nolyfill/object.assign@latest",
"object.entries": "npm:@nolyfill/object.entries@latest",
"object.fromentries": "npm:@nolyfill/object.fromentries@latest",
"object.groupby": "npm:@nolyfill/object.groupby@latest",
"object.hasown": "npm:@nolyfill/object.hasown@latest",
"object.values": "npm:@nolyfill/object.values@latest",
"regexp.prototype.flags": "npm:@nolyfill/regexp.prototype.flags@latest",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@latest",
"string.prototype.trim": "npm:@nolyfill/string.prototype.trim@latest",
"string.prototype.trimend": "npm:@nolyfill/string.prototype.trimend@latest",
"string.prototype.trimleft": "npm:@nolyfill/string.prototype.trimleft@latest",
"string.prototype.trimright": "npm:@nolyfill/string.prototype.trimright@latest",
"string.prototype.trimstart": "npm:@nolyfill/string.prototype.trimstart@latest",
"typed-array-buffer": "npm:@nolyfill/typed-array-buffer@latest",
"typed-array-byte-length": "npm:@nolyfill/typed-array-byte-length@latest",
"typed-array-byte-offset": "npm:@nolyfill/typed-array-byte-offset@latest",
"typed-array-length": "npm:@nolyfill/typed-array-length@latest"
}
}
}