-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.94 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
{
"name": "react-hs-components",
"version": "0.6.2",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"homepage": "https://github.com/HearthSim/react-hs-components",
"bugs": {
"url": "https://github.com/HearthSim/react-hs-components/issues"
},
"license": "UNLICENSED",
"author": "Benedict Etzel <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:HearthSim/react-hs-components.git"
},
"scripts": {
"dev": "rollup -c --watch",
"build": "rollup -c",
"format": "prettier --write \"{src/**/*.ts{,x},stories/**/*.ts{,x},*.js}\"",
"lint": "prettier --list-different \"{src/**/*.ts{,x},*.js}\"",
"storybook": "start-storybook -p 9001 -c .storybook",
"build-storybook": "build-storybook -c .storybook -o .out",
"test": "jest"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.2.2",
"@storybook/addon-backgrounds": "^5.1.9",
"@storybook/addon-info": "^5.1.9",
"@storybook/addon-knobs": "^5.1.9",
"@storybook/react": "^5.1.9",
"@types/jest": "^25.1.4",
"@types/node": "^12.12.21",
"@types/react": "^16.0.7",
"@types/react-dom": "^16.9.4",
"@types/react-test-renderer": "^16.9.1",
"@types/storybook__react": "^4.0.2",
"@types/styled-components": "^5.0.1",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.6",
"jest": "^25.2.3",
"prettier": "^2.0.2",
"react": "^16.0.0",
"react-dom": "16.0.0",
"react-test-renderer": "^16.4.1",
"rollup": "^2.2.0",
"rollup-plugin-typescript2": "^0.26.0",
"styled-components": "^5.1.0",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"useExperimentalLanguageServer": true
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
],
"preset": "ts-jest"
},
"private": true,
"sideEffects": false
}