-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.91 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.91 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
66
{
"name": "@prudencss/react",
"version": "1.0.0",
"description": "pruedencss react component implementation",
"author": "joehannes",
"license": "MIT",
"repository": "prudencss/react-oop",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "cross-env CI=1 react-scripts-ts test --env=jsdom",
"test:watch": "react-scripts-ts test --env=jsdom",
"build": "react-scripts build",
"start": "yarn storybook",
"predeploy": "yarn build-storybook",
"deploy": "gh-pages -d storybook-static",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"dependencies": {
"classnames": "^2.2.6",
"react-scripts": "^3.4.1",
"rgb2hex": "^0.2.0"
},
"peerDependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@prudencss/scss": "../scss",
"@storybook/addon-actions": "^6.0.28",
"@storybook/addon-docs": "^6.0.28",
"@storybook/addon-essentials": "^6.0.28",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-knobs": "^6.0.28",
"@storybook/addon-links": "^6.0.28",
"@storybook/addon-storysource": "^6.0.28",
"@storybook/addons": "^6.0.28",
"@storybook/preset-create-react-app": "^3.1.4",
"@storybook/react": "^6.0.28",
"@storybook/theming": "^6.0.28",
"@types/classnames": "^2.2.11",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"@types/react": "^16.9.55",
"@types/react-dom": "^16.9.9",
"@types/storybook__react": "^4.0.2",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"gh-pages": "^3.1.0",
"react-docgen-typescript-loader": "^3.7.2",
"react-is": "^16.13.1",
"sass": "^1.28.0",
"typedoc": "^0.17.8",
"typescript": "^4.0.5"
},
"files": [
"dist"
]
}