-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 4.47 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 4.47 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "core-app",
"version": "1.0.0",
"description": "SellerSpot Core tenant dashboard ",
"main": "index.js",
"scripts": {
"start": "node server",
"dev": "webpack serve --mode development --env development",
"build": "webpack --mode production --env NODE_ENV=production --env production",
"build:analyze": "webpack --mode production --env NODE_ENV=production --env production --env analyze",
"lint": "eslint src --max-warnings 0",
"lint:fix": "eslint src --fix --max-warnings 0",
"update:packages": "npm install --save @sellerspot/universal-components @sellerspot/universal-types",
"storybook": "start-storybook -p 9006",
"build:storybook": "build-storybook",
"prettier": "prettier --write src",
"lint-staged": "lint-staged",
"postinstall": "npm run husky:install",
"husky:install": "husky install",
"husky:pre-commit": "npm run lint-staged",
"stylelint": "npx stylelint \"**/*.scss\"",
"stylelint:fix": "npx stylelint \"**/*.scss\" --fix",
"yalc:link": "yalc link @sellerspot/universal-components @sellerspot/universal-types",
"yalc:remove": "yalc remove --all"
},
"keywords": [],
"author": "Sellerspot",
"license": "ISC",
"devDependencies": {
"@storybook/addon-actions": "^6.2.8",
"@storybook/addon-essentials": "^6.2.8",
"@storybook/addon-links": "^6.2.8",
"@storybook/node-logger": "^6.2.8",
"@storybook/preset-create-react-app": "^3.1.7",
"@storybook/react": "^6.2.8",
"@types/classnames": "^2.3.1",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.41",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.7",
"@types/react-select": "^4.0.17",
"@types/react-sortable-tree": "^0.3.13",
"@types/webpack": "^4.41.25",
"@types/webpack-bundle-analyzer": "^3.9.0",
"@types/webpack-dev-server": "^3.11.1",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"css-loader": "^5.0.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.0.7",
"html-webpack-plugin": "^4.5.2",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"path-browserify": "^1.0.1",
"prettier": "^2.2.1",
"sass": "^1.32.5",
"sass-loader": "^10.1.1",
"sass-resources-loader": "^2.1.1",
"style-loader": "^2.0.0",
"stylelint": "^13.12.0",
"stylelint-config-idiomatic-order": "^8.1.0",
"ts-loader": "^8.0.12",
"ts-node": "^9.1.1",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^4.2.4",
"webpack": "^4.46.0",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.0",
"yalc": "^1.0.0-pre.53"
},
"dependencies": {
"@hookstate/core": "^3.0.7",
"@hookstate/devtools": "^3.0.0",
"@hookstate/persistence": "^3.0.0",
"@iconify/icons-bx": "^1.1.0",
"@iconify/icons-carbon": "^1.1.3",
"@iconify/icons-codicon": "^1.1.15",
"@iconify/icons-ic": "^1.1.4",
"@iconify/icons-mdi": "^1.1.15",
"@iconify/icons-ri": "^1.1.0",
"@iconify/react": "^1.1.4",
"@reduxjs/toolkit": "^1.5.1",
"@sellerspot/universal-components": "^1.17.0",
"@sellerspot/universal-types": "^1.8.8",
"@types/react-transition-group": "^4.4.1",
"axios": "^0.21.1",
"classnames": "^2.3.1",
"dayjs": "^1.10.6",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"final-form": "^4.20.2",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-final-form": "^6.5.3",
"react-icons": "^4.2.0",
"react-redux": "^7.2.3",
"react-router-dom": "^5.2.0",
"react-select": "^4.3.1",
"react-sortable-tree": "^2.8.0",
"react-to-print": "^2.12.4",
"react-transition-group": "^4.4.2",
"yup": "^0.32.9"
}
}