-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.23 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
{
"name": "webpack-demo",
"version": "1.0.0",
"description": "",
"type": "module",
"engines": {
"node": "16.6.2"
},
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.prod.js",
"build-watch": "NODE_ENV=production webpack --watch --config webpack.prod.js",
"watch": "webpack --watch --config webpack.dev.js",
"start": "webpack serve --open --config webpack.dev.js",
"test": "jest",
"locale": "npx node script/translate/index.mjs",
"zip": "npx node script/distToZip/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@google-cloud/translate": "^6.2.7",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.1.9",
"@types/archiver": "^5.1.1",
"@types/chrome": "0.0.145",
"@types/copy-webpack-plugin": "^8.0.0",
"@types/jest": "^26.0.23",
"@types/node": "^15.14.0",
"@types/node-fetch": "^2.5.12",
"@types/pretty": "^2.0.0",
"@types/react": "^17.0.13",
"@types/react-dom": "^17.0.8",
"@types/react-router-dom": "^5.1.7",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^3.11.5",
"archiver": "^5.3.0",
"babel-jest": "^27.0.6",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "^5.2.6",
"express": "^4.17.1",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.6",
"node-fetch": "^2.6.1",
"pretty": "^2.0.0",
"style-loader": "^3.0.0",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.3.5",
"webpack": "^5.42.0",
"webpack-cli": "^4.7.2",
"webpack-dev-middleware": "^5.0.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@headlessui/react": "^1.4.0",
"autoprefixer": "^10.2.6",
"jshint": "^2.13.1",
"postcss": "^8.3.5",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^6.7.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"tailwindcss": "^2.2.4"
}
}