forked from React95/React95
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.53 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
{
"name": "root",
"private": true,
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@nrwl/nx-cloud": "^14.2.0",
"@nrwl/workspace": "^14.4.2",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"all-contributors-cli": "^6.20.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.3",
"babel-plugin-styled-components": "^2.0.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-modern-regexp": "0.0.6",
"babel-polyfill": "^6.26.0",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.3",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-styled-components": "^7.0.8",
"lerna": "^5.0.0",
"nx": "^14.1.9",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"npmClient": "yarn",
"workspaces": [
"packages/*"
],
"scripts": {
"commit": "git-cz",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"dev": "yarn nx storybook @react95/core ",
"dev:explorer": "yarn workspace @react95/explorer develop",
"pretest": "lerna run prebuild",
"test": "yarn nx run-many --target=test --all --parallel",
"test:core": "yarn nx test @react95/core",
"test:clippy": "yarn nx test @react95/clippy",
"lint:core": "yarn nx lint @react95/core",
"lint:clippy": "yarn nx lint @react95/clippy",
"lint:all": "yarn nx run-many --target=lint --all --parallel",
"lint": "eslint --ext js,jsx --quiet",
"clean": "lerna clean -y",
"build": "yarn nx run-many --target=build --all --parallel",
"build:clippy": "yarn nx build @react95/clippy",
"build:core": "yarn nx build @react95/core",
"build:icons": "yarn nx build @react95/icons",
"build:storybook": "yarn nx build-storybook @react95/core",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"graphql": "^15.4.0",
"graphql-compose": "^7.25.0"
},
"dependencies": {
"webpack": "^5.73.0"
}
}