-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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
{
"name": "@projectstorm/react-workspaces",
"version": "2.6.1",
"main": "./dist/main.js",
"typings": "./dist/@types/src/main",
"author": "dylanvorster",
"repository": {
"type": "git",
"url": "https://github.com/projectstorm/react-workspaces.git"
},
"keywords": [
"web",
"workspace",
"windows",
"panels",
"drag",
"layout",
"split",
"react",
"typescript",
"simple"
],
"scripts": {
"ncu": "ncu -u && pnpm recursive exec -- ncu -u",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx}\"",
"clean": "rm -rf packages/*/dist",
"build": "tsc --build && pnpm run -r build",
"build:prod": "NODE_ENV=production pnpm build",
"release": "pnpm build:prod && pnpm changeset publish",
"release:storybook": "tsc --build && cd demo && pnpm storybook:build && ./node_modules/.bin/storybook-to-ghpages --existing-output-dir .out"
},
"devDependencies": {
"babel-loader": "^9.2.1",
"source-map-loader": "^5.0.0",
"@babel/core": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"prettier": "^3.4.1",
"typescript": "^5.7.2",
"terser-webpack-plugin": "^5.3.10",
"@changesets/cli": "^2.27.10",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}