-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1018 Bytes
/
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
{
"name": "guesswhere",
"private": true,
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Trufi/guess-where.git"
},
"author": {
"name": "Mstislav Zhivodkov",
"email": "[email protected]",
"url": "https://trufi.github.io/"
},
"license": "MIT",
"scripts": {
"start": "npm run dev",
"build": "webpack --env=production",
"dev": "webpack serve",
"prettier": "prettier --check \"./**/*.{ts,tsx,js,json,html,css}\"",
"test": "npm run prettier && npm run build"
},
"dependencies": {
"@2gis/mapgl": "^1.21.0",
"@trufi/utils": "0.0.8",
"tslib": "^2.3.1"
},
"devDependencies": {
"fork-ts-checker-webpack-plugin": "^6.4.0",
"prettier": "^2.4.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
}
}