-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.43 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
{
"name": "adapt-ui",
"version": "0.0.6",
"description": "React toolkit to create theme adaptable user interfaces",
"repository": {
"type": "git",
"url": "git+https://github.com/matheusps/adapt-ui.git"
},
"author": "matheusps <[email protected]>",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"check-types": "tsc",
"test": "jest",
"build": "npm run build-lib && npm run build-storybook",
"build-lib": "rollup -c ",
"build-storybook": "build-storybook",
"start": "rollup -c -w",
"storybook": "start-storybook -p 6006",
"release": "np",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@storybook/addon-storysource": "^5.2.5",
"@storybook/react": "^5.2.4",
"@svgr/rollup": "^4.3.0",
"@testing-library/jest-dom": "^4.1.2",
"@testing-library/react": "^9.3.0",
"@types/jest": "^24.0.11",
"@types/node": "^12.11.1",
"@types/react": "^16.8.12",
"@types/react-dom": "^16.8.3",
"@types/styled-components": "^4.1.16",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"cross-env": "^6.0.3",
"jest": "^24.7.1",
"jest-styled-components": "^6.3.3",
"np": "^5.1.1",
"path": "^0.12.7",
"react": "^16.8.6",
"react-docgen-typescript-loader": "^3.3.0",
"react-dom": "^16.8.6",
"rollup": "^1.15.6",
"rollup-plugin-alias": "^2.1.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.3",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-typescript2": "^0.24.3",
"rollup-plugin-url": "^3.0.0",
"ts-jest": "^24.0.1",
"typescript": "^3.4.1"
},
"peerDependencies": {
"react": "16.8.6",
"react-dom": "16.8.6"
},
"dependencies": {
"styled-components": "^4.3.1",
"styled-tokens": "^0.0.5"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"bugs": {
"url": "https://github.com/matheusps/adapt-ui/issues"
},
"homepage": "https://github.com/matheusps/adapt-ui#readme"
}