-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.85 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
{
"name": "sentiment-analysis-mex-frontend",
"version": "1.0.0",
"description": "",
"type": "module",
"engines": {
"node": ">=14",
"npm": ">=7"
},
"scripts": {
"start": "webpack serve -c config/build/webpack.development.js",
"build": "webpack -c config/build/webpack.production.js",
"test": "jest -c ./config/test/jest.config.js",
"test:ci": "jest -c ./config/test/jest.config.js --silent --ci=true --coverage",
"lint": "eslint ./src ./config --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "0.5.1",
"@svgr/webpack": "5.5.0",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.1.2",
"@types/jest": "27.0.2",
"@types/react": "17.0.27",
"@types/react-dom": "17.0.9",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.29.0",
"css-loader": "6.3.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "24.5.2",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.26.1",
"html-webpack-plugin": "5.3.2",
"jest": "27.2.4",
"postcss": "8.3.9",
"postcss-loader": "6.1.1",
"postcss-preset-env": "6.7.0",
"prettier": "2.4.1",
"react-refresh": "0.10.0",
"react-refresh-typescript": "2.0.2",
"style-loader": "3.3.0",
"tailwindcss": "2.2.16",
"ts-jest": "27.0.5",
"ts-loader": "9.2.6",
"typescript": "4.4.3",
"webpack": "5.57.1",
"webpack-cli": "4.9.0",
"webpack-dev-server": "4.3.1",
"webpack-merge": "5.8.0"
},
"dependencies": {
"react": "17.0.2",
"react-dom": "17.0.2"
},
"prettier": "./config/linter/.prettierrc.json",
"eslintConfig": {
"extends": "./config/linter/.eslintrc"
},
"postcss": {
"extends": "./config/style/postcss.config.json"
}
}