-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.98 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "jmdesign",
"version": "0.2.23",
"license": "MIT",
"private": false,
"main": "dist/components/index.js",
"module": "dist/components/index.js",
"files": [
"dist",
"styles"
],
"babel": {
"presets": [
"react",
"env",
"stage-2"
]
},
"dependencies": {
"env-cmd": "^9.0.3",
"immutability-helper": "^3.0.1",
"npm-run-all": "^4.1.5",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-currency-formatter": "^1.1.0",
"react-dom": "^16.8.6",
"react-dropzone": "^10.1.5",
"react-icons": "^3.11.0",
"react-scripts": "^3.0.1"
},
"scripts": {
"build-css": "node-sass --include-path ./src --include-path ./node_modules src/ -o src/styles/css",
"watch-css": "npm run build-css && node-sass --include-path ./src --include-path ./node_modules src/ -o src/styles/css --watch --recursive",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"prepublish": "NODE_ENV=production && rm -rf dist && mkdir dist && cp -a src/styles/. dist/styles && npx babel src/components --out-dir dist/components --copy-files",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook-deploy": "build-storybook -c .storybook -o .out",
"start-js": "react-scripts start",
"build-storybook": "build-storybook -c .storybook"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "lint-staged",
"...": "..."
}
},
"lint-staged": {
"*.{js,jsx}": [
"pretty-quick --staged",
"eslint src/ --fix",
"git add"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "^7.4.5",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-info": "^5.1.9",
"@storybook/addon-knobs": "^5.1.9",
"@storybook/addon-links": "^5.1.9",
"@storybook/addon-notes": "^5.1.9",
"@storybook/addon-viewport": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.9",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-styled-components": "^1.10.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"file-loader": "^4.0.0",
"husky": "^2.7.0",
"lint-staged": "^8.2.1",
"node-sass": "^4.12.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"redux-devtools": "^3.5.0",
"sass-loader": "^7.1.0",
"webpack-cli": "^3.3.5"
}
}