-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.85 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
80
81
82
83
84
85
86
{
"name": "artibox",
"description": "Artibox",
"repository": "git@github.com:React-Artibox/artibox.git",
"author": "Rytass",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna run clean && lerna clean",
"build:clean": "lerna run build:clean --stream --parallel",
"build": "lerna run build --stream --sort",
"format": "prettier './**/*.{js,ts,tsx,json,scss,md,mdx}' --write",
"lint:css": "stylelint ./**/*.scss --config .stylelintrc",
"lint:ts": "eslint . --config .eslintrc --ext .js,.ts,.tsx,.mdx",
"lint": "npm run lint:ts && npm run lint:css",
"test:clean": "rm -rf ./coverage",
"test:coverage": "jest --coverage",
"test": "jest",
"storybook:start": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"storybook:deploy": "storybook-to-ghpages --out ./public",
"commit": "git-cz",
"release": "lerna version && npm run build && lerna publish from-package"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@storybook/addon-docs": "^6.0.28",
"@storybook/addon-knobs": "^6.0.28",
"@storybook/addon-storysource": "^6.0.28",
"@storybook/cli": "^6.0.28",
"@storybook/react": "^6.0.28",
"@storybook/storybook-deployer": "^2.8.7",
"@types/jest": "^26.0.15",
"@types/node": "^13.13.19",
"@types/react": "^16.9.55",
"@types/react-dom": "^16.9.9",
"@types/react-transition-group": "^4.2.4",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"autoprefixer": "^9.8.6",
"awesome-typescript-loader": "^5.2.1",
"commitizen": "^4.2.2",
"css-loader": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mdx": "^1.8.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"lint-staged": "^10.5.1",
"node-sass": "^4.14.1",
"prettier": "^2.1.2",
"react": "^17.0.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^17.0.1",
"rollup": "^2.33.1",
"rollup-plugin-postcss": "^3.1.8",
"sass-loader": "^10.0.5",
"slate": "^0.59.0",
"slate-history": "^0.59.0",
"slate-hyperscript": "^0.59.0",
"slate-react": "^0.59.0",
"style-loader": "^1.2.1",
"stylelint": "^13.7.2",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0",
"ts-jest": "^26.4.4",
"typescript": "^3.9.7"
},
"resolutions": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}