-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.44 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
{
"name": "sketch",
"version": "0.0.1-alpha.3",
"description": "",
"main": "index.js",
"private": true,
"workspaces": [
"packages/*",
"example/*"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "pnpm --filter @sketchjs/* build",
"changeset:alpha": "pnpm changeset pre enter alpha",
"changeset:release": "pnpm changeset pre exit & pnpm changeset",
"version": "pnpm changeset && pnpm changeset version",
"start:example-h5-react": "pnpm --filter example-h5-react start",
"start:example-applet-react": "pnpm --filter example-applet-react dev:weapp",
"release": "pnpm changeset publish",
"clear-all": "pnpm -r exec rm -rf node_modules"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"debug": "^4.3.7",
"eslint": "^8.19.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-n": "^15.2.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"dependencies": {
"cross-env": "^7.0.3"
}
}