-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.35 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
76
77
{
"name": "shopping-cart",
"version": "0.1.0",
"engines": {
"node": "18.17.2",
"npm": "6.9.0"
},
"private": true,
"dependencies": {
"@storybook/addon-knobs": "^5.2.1",
"bootstrap": "^4.3.1",
"enzyme": "^3.10.0",
"expect": "^24.9.0",
"font-awesome": "^4.7.0",
"jquery": "^3.4.1",
"node-sass": "^4.12.0",
"node-sass-chokidar": "^1.3.5",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-autosuggest": "^9.4.3",
"react-bootstrap": "^1.0.0-beta.5",
"react-chromatic": "^0.8.4",
"react-dom": "^16.9.0",
"react-redux": "^7.1.1",
"react-router-dom": "^5.0.1",
"react-scripts": "^3.1.2",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"require-context.macro": "^1.2.1",
"storybook": "^5.1.11",
"typescript": "^3.6.3"
},
"scripts": {
"build-css": "node-sass-chokidar --include-path src src/styles/global/index.scss public/global/shopping-cart/css/index.css --output-style compressed",
"watch-css": "npm run build-css && node-sass-chokidar --watch --include-path src src/styles/global/index.scss public/global/shopping-cart/css/index.css",
"start": "react-scripts start",
"dev": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write \"src/**/*.{js,jsx,json,css,scss}\"",
"lint": "eslint src",
"lint-fix": "yarn lint --fix",
"storybook": "npm run build-css && start-storybook -p 9000 -s public",
"build-storybook": "build-storybook -s public"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "^7.6.0",
"@storybook/addon-actions": "^5.2.1",
"@storybook/addon-console": "^1.2.1",
"@storybook/addon-links": "^5.2.1",
"@storybook/addons": "^5.2.1",
"@storybook/react": "^5.2.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"eslint": "^6.4.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"prettier": "^1.18.2",
"storybook-addon-specifications": "^2.1.5"
},
"eslintIgnore": [
"packages/"
]
}