-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.07 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.07 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
{
"name": "sample",
"version": "1.0.0",
"main": "src/index.tsx",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=develop webpack-dev-server --open --mode development --hot",
"build:dev": "cross-env NODE_ENV=develop webpack --mode production",
"build:prod": "cross-env NODE_ENV=production webpack --mode production",
"lint:check": "eslint --ext .tsx,.ts ./src",
"lint:fix": "eslint --fix --ext .tsx,.ts ./src",
"prettier:fix": "prettier --write ./src/**/*.{ts,tsx}"
},
"license": "MIT",
"dependencies": {
"@apollo/client": "^3.6.9",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.8.0",
"@mui/lab": "^5.0.0-alpha.85",
"@mui/material": "^5.8.1",
"@mui/styles": "^5.8.4",
"@reduxjs/toolkit": "^1.8.2",
"date-fns": "^2.29.1",
"dotenv": "^16.0.2",
"graphql": "^16.6.0",
"hammerjs": "^2.0.8",
"html-webpack-plugin": "^5.5.0",
"mui-rte": "^2.0.1",
"react": "^18.1.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.1.0",
"react-hook-form": "^7.33.1",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"sample-storybook": "./sample-storybook-0.0.1.tgz",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"babel-loader": "^8.2.5",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"file-loader": "^6.2.0",
"prettier": "2.6.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.0",
"typescript": "^4.7.2",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
}
}