-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2 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
{
"name": "@validitylabs/react-ui",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git@github.com:validitylabs/react-ui.git"
},
"scripts": {
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"compile": "tsc -p tsconfig.json && copyfiles src/components/**/*.md build/"
},
"keywords": [
"react",
"hello world"
],
"author": "Patrice Juergens <patrice.juergens@validitylabs.org>",
"license": "GPL-3.0-only",
"description": "Collection of react ui components",
"peerDependencies": {
"react": "^16.13.0",
"react-dom": "^16.13.0"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@storybook/addon-actions": "^5.3.14",
"@storybook/addon-info": "^5.3.14",
"@storybook/addon-links": "^5.3.14",
"@storybook/addons": "^5.3.14",
"@storybook/react": "^5.3.14",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.1.3",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"babel-loader": "^8.0.6",
"copyfiles": "^2.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "^25.1.0",
"react-docgen-typescript-loader": "^3.6.0",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3"
},
"bit": {
"env": {
"compiler": "bit.envs/compilers/react@1.0.16",
"tester": "bit.envs/testers/jest@22.4.3"
},
"componentsDefaultDirectory": "components/{name}",
"packageManager": "npm",
"overrides": {
"peerDependencies": {
"react": "^16.13.0",
"react-dom": "^16.13.0"
},
"devDependencies": {
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2"
}
}
}
}