-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.97 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
{
"name": "react-nes",
"version": "1.0.0",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"files": [
"build"
],
"description": "React component library based on NES.css",
"scripts": {
"build": "rollup -c",
"test": "jest --watch",
"test:once": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EggTronic/react-nes.git"
},
"keywords": [
"React",
"Component",
"Library",
"Rollup",
"Typescript",
"Sass",
"Storybook"
],
"author": "EggTronic",
"license": "MIT",
"bugs": {
"url": "https://github.com/EggTronic/react-nes/issues"
},
"homepage": "https://github.com/EggTronic/react-nes#readme",
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@sambego/storybook-state": "^2.0.1",
"@storybook/addon-actions": "^5.2.6",
"@storybook/addon-links": "^5.2.6",
"@storybook/addons": "^5.2.6",
"@storybook/react": "^5.2.6",
"@storybook/storybook-deployer": "^2.8.1",
"@types/enzyme": "^3.10.4",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.24",
"@types/react": "^16.9.12",
"babel-loader": "^8.0.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"rollup": "^1.27.4",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-typescript2": "^0.25.2",
"sass-loader": "^8.0.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.2"
},
"dependencies": {
"classnames": "^2.2.6",
"nes.css": "^2.3.0",
"rc-dialog": "^7.6.1"
}
}