-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 3.3 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "bit-test-app",
"version": "0.2.0",
"private": true,
"dependencies": {
"@apollo/react-common": "3.1.3",
"@apollo/react-hooks": "3.1.5",
"@apollo/react-ssr": "3.1.5",
"@chakra-ui/react": "1.1.2",
"@chakra-ui/icons": "1.0.2",
"framer-motion": "^2.9.5",
"@emotion/react": "11.1.3",
"@emotion/styled": "11.0.0",
"@types/react-table": "7.0.19",
"apollo-cache-inmemory": "1.6.5",
"apollo-client": "2.6.10",
"apollo-link-http": "1.5.17",
"graphql": "15.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-feather": "2.0.8",
"react-responsive": "8.1.0",
"react-scripts": "^3.4.1",
"react-table": "7.2.2",
"styled-components": "^5.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^25.2.1",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-responsive": "8.0.2",
"@types/react-table": "7.0.19",
"bit-bin": "14.8.8",
"jest": "24.9.0",
"react-icons": "3.10.0",
"react-scripts": "^3.4.1",
"typescript": "^3.9.0"
},
"peerDependencies": {
"@chakra-ui/react": "1.1.2",
"@chakra-ui/icons": "1.0.2",
"framer-motion": "^2.9.5",
"@emotion/react": "11.1.3",
"@emotion/styled": "11.0.0",
"react": "^16.13.0",
"react-dom": "^16.13.0"
},
"scripts": {
"bit:test": "bit test",
"bit:import": "bit import # import new versions of changed components",
"bit:tag:all": "bit tag --all # all changed components receive a patch upgrade e.g. from 0.0.1 to 0.0.2",
"bit:tag:all:minor": "bit tag --all --minor # all changed components upgrade e.g. from 0.1.1 to 0.2.0",
"bit:tag:all:major": "bit tag --all --major # all changed components upgrade e.g. from 1.1.1 to 2.0.0",
"bit:tag:scope": "bit tag --scope 0.1.1 # all components on local scope are set to 0.1.1",
"bit:export": "bit export limebit.chakra-ui-recipes # components with a new version are pushed to bit.dev",
"bit:checkout:latest": "bit checkout latest --all",
"bit:build": "bit build",
"bit:build:debug": "DEBUG=true; bit build",
"bit:log": "bit log component-id",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"bit": {
"env": {
"compiler": {
"bit.envs/compilers/[email protected]": {
"rawConfig": {
"tsconfig": {
"compilerOptions": {
"target": "ES5",
"module": "CommonJS",
"skipLibCheck": true
},
"lib": [
"dom",
"dom.iterable",
"esnext",
"esnext.asynciterable"
]
}
}
}
},
"tester": "bit.envs/testers/[email protected]"
},
"componentsDefaultDirectory": "components/{name}",
"packageManager": "yarn"
}
}