-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.8 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
87
88
89
90
91
92
93
94
95
{
"name": "root",
"description": "React UI toolkit library for web app",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/we-mak/w-design.git"
},
"version": "1.0.0",
"keywords": [
"react",
"styled-system",
"styled-components",
"UI kit",
"typescript"
],
"workspaces": [
"packages/*"
],
"private": true,
"publishConfig": {
"access": "public"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"dev:es": "lerna run dev:es --parallel",
"dev:type": "lerna run dev:type --parallel",
"prebuild": "lerna exec --parallel -- yarn clean",
"build": "lerna exec --stream -- yarn build",
"test": "cross-env lerna run test",
"coverage": "cross-env lerna run coverage",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls"
},
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0",
"styled-components": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.7.4",
"@babel/runtime": "^7.7.2",
"@testing-library/jest-dom": "^5.0.0",
"@testing-library/react": "^11.0.4",
"@testing-library/react-hooks": "^5.0.0",
"@types/jest": "^26.0.14",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/styled-components": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"babel-plugin-styled-components": "^1.10.6",
"coveralls": "^3.0.8",
"cross-env": "^7.0.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^4.0.3",
"jest": "^26.5.2",
"jest-cli": "^26.5.2",
"jest-dom": "^4.0.0",
"jest-styled-components": "^7.0.0-beta.2",
"jest-transform-css": "^2.0.0",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"postcss": "^8.1.1",
"prettier": "^2.0.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-is": "^17.0.0",
"react-test-renderer": "^17.0.0",
"rimraf": "^3.0.0",
"styled-components": "^5.0.1",
"stylelint": "^13.1.0",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.8.0",
"stylis": "^4.0.0",
"ts-jest": "^26.0.0",
"tslint": "^6.0.0",
"tslint-react": "^5.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"body-scroll-lock": "^3.1.5"
}
}