-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.45 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
{
"name": "components",
"version": "0.1.0",
"main": "dist/index.js",
"module": "dist/components.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"create:component": "node bin/createComponent.js",
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"lint": "tsdx lint src",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@storybook/addon-actions": "^5.3.6",
"@storybook/addon-docs": "^5.3.7",
"@storybook/addon-info": "^5.3.7",
"@storybook/addon-links": "^5.3.6",
"@storybook/addons": "^5.3.6",
"@storybook/react": "^5.3.6",
"@testing-library/jest-dom": "^5.0.0",
"@testing-library/react": "^9.4.0",
"@testing-library/react-hooks": "^3.2.1",
"@testing-library/user-event": "^8.0.3",
"@types/jest": "^24.9.0",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/user-event": "^4.1.0",
"babel-loader": "^8.0.6",
"husky": "^4.0.10",
"jest": "^24.9.0",
"lint-staged": "^10.0.0",
"react": "^16.12.0",
"react-docgen-typescript-loader": "^3.6.0",
"react-dom": "^16.12.0",
"react-is": "^16.12.0",
"ts-jest": "^24.3.0",
"ts-loader": "^6.2.1",
"tsdx": "^0.12.3",
"tslib": "^1.10.0",
"typescript": "^3.7.5"
},
"dependencies": {}
}