This repository has been archived by the owner on Jun 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.89 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
78
79
80
81
{
"name": "duyeetweb",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "webpack serve --config build-utils/webpack.config.js --env env=dev",
"build": "webpack --config build-utils/webpack.config.js --env env=prod --profile --json > stats.json",
"build:analyze": "npm run build -- --env addon=bundleanalyze",
"lint": "eslint --ext .js --ext .jsx --ext .ts --ext .tsx src test config",
"format": "eslint --ext .js --ext .jsx --ext .ts --ext .tsx src test config --fix",
"test": "jest --config ./jest.config.js",
"test:watch": "npm run test -- --watch",
"serve": "npm run build && http-server dist"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@babel/types": "^7.12.12",
"@types/babel__core": "^7.1.12",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.20",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-test-renderer": "^17.0.0",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.0.1",
"dotenv-webpack": "^6.0.0",
"enzyme": "^3.11.0",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-airbnb-typescript-prettier": "^4.1.0",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-babel-module": "^5.2.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^4.5.1",
"http-server": "^0.12.3",
"jest": "^26.6.3",
"jest-styled-components": "^7.0.3",
"node-sass": "^5.0.0",
"postcss-loader": "^4.1.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"react-hot-loader": "^4.13.0",
"react-test-renderer": "^17.0.1",
"sass-loader": "^10.1.1",
"snapshot-diff": "^0.8.1",
"style-loader": "^2.0.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"typescript-plugin-styled-components": "^1.4.4",
"url-loader": "^4.1.1",
"webpack": "^5.14.0",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"webpack-messages": "^2.0.4"
},
"dependencies": {
"axios": "^0.21.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styled-components": "^5.2.1"
}
}