forked from arwes/arwes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.4 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
{
"private": true,
"engines": {
"node": "^18.13"
},
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@emotion/react": "^11.10.5",
"motion": "^10.15.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@build-script/typescript-transformer-append-js-extension": "^1.0.7",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@nrwl/cli": "^15.6.3",
"@nrwl/tao": "^15.6.3",
"@nrwl/workspace": "^15.6.3",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"all-contributors-cli": "^6.24.0",
"cross-env": "^7.0.3",
"eslint": "^8.33.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"glob": "^8.1.0",
"husky": "^8.0.3",
"jest": "^29.4.2",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^29.4.2",
"lerna": "^6.4.1",
"markdownlint": "^0.27.0",
"markdownlint-cli": "^0.33.0",
"npm-dts": "^1.3.12",
"rimraf": "^4.1.2",
"serve": "^14.2.0",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"ttypescript": "^1.5.15",
"typescript": "4.9.x",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"scripts": {
"postinstall": "husky install && lerna bootstrap",
"lint": "npm run lint-js && npm run lint-md",
"lint-js": "eslint .",
"lint-js-fix": "eslint . --fix",
"lint-md": "markdownlint .",
"lint-md-fix": "markdownlint . --fix",
"test": "jest",
"test-watch": "jest --watch",
"test-coverage": "jest --coverage",
"test-list": "jest --listTests",
"clean": "sh ./scripts/clean.sh",
"build": "npx cross-env NODE_ENV=production npx nx run-many --target build --all --parallel=8",
"www": "npm run build && sh ./scripts/www.sh",
"integration": "npm run build && npm run lint && npm run test-coverage",
"release": "npm run integration && lerna publish",
"contributors-add": "all-contributors add",
"readme-contributors-generate": "all-contributors generate",
"readme-community-generate": "node ./scripts/readme-community-generate.js"
}
}