forked from React95/React95
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.55 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.55 KB
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
{
"name": "root",
"private": true,
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.0",
"@babel/preset-typescript": "^7.13.0",
"@bojagi/cli": "^0.15.1",
"@types/jest": "^26.0.13",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"all-contributors-cli": "^6.14.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.10.7",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-modern-regexp": "0.0.6",
"babel-polyfill": "^6.26.0",
"commitizen": "^4.0.3",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"jest-styled-components": "^7.0.0",
"lerna": "^3.20.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"npmClient": "yarn",
"workspaces": [
"packages/*"
],
"scripts": {
"commit": "git-cz",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"dev": "yarn workspace @react95/core storybook",
"pretest": "lerna run prebuild",
"postinstall": "lerna run postinstall --scope=@react95/icons --stream",
"test": "jest --config=./jest/config/config.js",
"test:core": "jest --config=./jest/config/core.js",
"test:clippy": "jest --config=./jest/config/clippy.js",
"lint:core": "yarn lint packages/core",
"lint:clippy": "yarn lint packages/clippy",
"lint:all": "yarn lint:core && yarn lint:clippy",
"lint": "eslint --ext js,jsx --quiet",
"clean": "lerna clean",
"build": "lerna run build --stream --parallel",
"build:clippy": "lerna run build --stream --scope=@react95/clippy",
"build:core": "lerna run build --stream --scope=@react95/core",
"build:icons": "lerna run build --stream --scope=@react95/icons",
"build:bojagi": "lerna run bojagi:build --stream --scope=@react95/core",
"upload:bojagi": "lerna run bojagi:upload --stream --scope=@react95/core"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:all",
"pre-push": "yarn test"
}
}
}