forked from react-grid-layout/react-grid-layout
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 2.03 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "lerna run clean",
"build": "lerna run build --reject-cycles",
"build-node": "cd ./packages/node/ && yarn build",
"pub": "lerna publish --no-private",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest test -c jest.config.ts ",
"test:integration": "node --experimental-vm-modules ./node_modules/.bin/jest test -c jest.config.integration.ts --forceExit --detectOpenHandles",
"deploy": "yarn deploy:docs && yarn deploy:example",
"deploy:docs": "yarn docs && gh-pages --dist docs --dotfiles",
"docs": "shx rm -rf docs && NODE_OPTIONS=--max_old_space_size=8192 typedoc && shx cp ./{.nojekyll} docs/",
"fmt": "prettier --write '{*,**/*}.{js,ts,jsx,tsx,json,vue}'",
"lint": "eslint --ext .ts . && prettier --check '{*,**/*}.{js,ts,jsx,tsx,json,vue}'",
"lint:fix": "eslint --fix --ext .ts . && yarn fmt",
"nuke": "shx rm -rf {.,packages/*/*}/{node_modules,yarn.lock}"
},
"devDependencies": {
"@types/eslint": "^8.2.1",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^29.2.3",
"@types/node": "^17.0.32",
"@types/prettier": "^2.7.1",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@types/rimraf": "^3.0.2",
"@types/fs-extra": "^9.0.13",
"babel-eslint": "^10.1.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"gh-pages": "^4.0.0",
"dotenv": "^16.0.3",
"jest": "^29.3.1",
"jest-extended": "^3.2.0",
"json": "^11.0.0",
"lerna": "^5.6.2",
"prettier": "^2.8.1",
"shx": "^0.3.4",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typedoc": "^0.23.17",
"typescript": "^4.8.4",
"typescript-esm": "^2.0.0",
"rimraf": "^3.0.2",
"fs-extra": "^10.1.0",
"benchmark": "^2.1.4",
"@types/benchmark": "^2.1.2",
"why-is-node-running": "^2.2.2"
}
}