-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·42 lines (42 loc) · 1.3 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
{
"name": "ts-webpack-googlemaps-sample",
"scripts": {
"build": "webpack --config ./webpack.prod.js --mode production",
"dev": "webpack-dev-server --config ./webpack.dev.js",
"format": "eslint --fix src/*.ts",
"lint": "eslint src/*.ts",
"test": "jest --passWithNoTests src/*",
"watch": "webpack --config ./webpack.dev.js --mode development"
},
"dependencies": {
"webpack-merge": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/runtime": "^7.12.1",
"@types/googlemaps": "^3.40.0",
"@types/jest": "^26.0.14",
"@types/webpack-env": "^1.15.3",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.10.1",
"babel-loader": "^8.1.0",
"css-loader": "^4.3.0",
"dotenv": "^8.2.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-prettier": "^3.1.4",
"html-replace-webpack-plugin": "^2.5.6",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.4.2",
"mini-css-extract-plugin": "^0.11.3",
"prettier": "^2.1.2",
"terser-webpack-plugin": "^4.2.3",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}