-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.76 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "google-maps-generator",
"version": "1.0.0",
"description": "A project that generates different google maps with drawn polygons and links",
"license": "MIT",
"author": "Robert Quinn",
"scripts": {
"webpack:build": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack",
"webpack:serve": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack serve",
"eslint:fix": "eslint . --ext .js,.jsx",
"nodemon": "nodemon",
"prettier:write": "prettier --write .",
"rimraf:dist": "rimraf dist",
"build": "dotenv -e .env -- run-s rimraf:dist webpack:build",
"serve": "dotenv -e .env -- run-s nodemon",
"env:example": "sh ./scripts/env/example.sh",
"lint-staged": "lint-staged",
"husky:install": "husky install",
"sort": "sort-package-json",
"jest:unit": "jest --env jsdom -c jest-unit.config.ts ./test/__tests__/unit",
"test:unit": "dotenv -e .env -- run-s jest:unit",
"jest:integration": "jest --forceExit --detectOpenHandles -c jest-integration.config.ts ./test/__tests__/integration.test.ts",
"test:integration": "dotenv -e .env -- run-s jest:integration",
"test:one": "jest --env jsdom -c jest-unit.config.ts ./test/__tests__/unit/map/init-add-map.ts",
"test": "dotenv -e .env -- run-s test:one"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@googlemaps/jest-mocks": "^2.19.1",
"@jest/environment": "^29.5.0",
"@jest/globals": "^29.5.0",
"@types/google.maps": "^3.53.4",
"@types/handlebars-webpack-plugin": "^2.2.2",
"@types/jquery": "^3.5.16",
"@types/jsdom": "^21.1.1",
"@types/lodash": "^4.14.191",
"@types/node": "^20.3.1",
"@types/webpack-node-externals": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"babel-jest": "^29.5.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"dotenv": "^16.1.4",
"dotenv-cli": "^7.2.1",
"eslint": "^8.42.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"handlebars-loader": "^1.7.3",
"handlebars-webpack-plugin": "^2.2.1",
"husky": "^8.0.3",
"install": "^0.13.0",
"javascript-obfuscator": "^4.0.0",
"jest": "^29.5.0",
"jest-config": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-environment-node": "^29.5.0",
"jest-environment-puppeteer": "^9.0.0",
"jest-puppeteer": "^9.0.0",
"jest-transform-stub": "^2.0.0",
"jsdom": "^22.1.0",
"lint-staged": "^13.2.2",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.7.2",
"nodemon": "^2.0.22",
"npm": "^9.7.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^8.5.0",
"prettier": "2.8.3",
"puppeteer": "^20.7.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"rimraf": "^5.0.1",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"sort-package-json": "^2.4.1",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"tree-kill": "^1.2.2",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-node-externals": "^3.0.0",
"webpack-obfuscator": "^3.5.1"
},
"engines": {
"node": "18.16.0",
"npm": "9.6.7"
}
}