-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.17 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": "@nofwl/nui",
"version": "0.0.6",
"description": "React components",
"author": "lencx <cxin1314@gmail.com>",
"license": "MIT",
"source": "src/components/index.ts",
"main": "dist/index.js",
"module": "dist/index.js",
"jsnext:main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"dev": "start-storybook -p 9089 -s public",
"build": "rollup -c",
"build-lib-watch": "tsc -w",
"deploy": "npm run build-storybook && gh-pages -d storybook-static",
"build-storybook": "npm run lint && build-storybook -s public",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'"
},
"keywords": [
"react",
"components",
"nui",
"ui"
],
"files": [
"dist"
],
"homepage": "https://nofwl.github.io/nui",
"repository": "git@github.com:nofwl/nui.git",
"bugs": {
"url": "https://github.com/nofwl/nui/issues"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"dependencies": {
"classnames": "^2.2.6"
},
"devDependencies": {
"@storybook/addon-actions": "^5.0.11",
"@storybook/addon-centered": "^5.0.11",
"@storybook/addon-info": "^5.0.11",
"@storybook/addon-knobs": "^5.0.11",
"@storybook/addon-links": "^5.0.11",
"@storybook/addons": "^5.0.11",
"@storybook/react": "^5.0.11",
"@storybook/theming": "^5.0.11",
"@types/classnames": "^2.2.7",
"@types/jest": "^24.0.13",
"@types/react-dom": "^16.8.4",
"@types/storybook__addon-knobs": "^5.0.0",
"@types/storybook__react": "^4.0.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"gh-pages": "^2.0.1",
"jest": "^24.8.0",
"node-sass": "^4.12.0",
"react-docgen-typescript-loader": "^3.1.0",
"rollup": "^1.12.3",
"rollup-plugin-filesize": "^6.0.1",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-typescript2": "^0.21.1",
"sass-loader": "^7.1.0",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5"
}
}