-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.46 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
{
"name": "@2gis/deck2gis-layer",
"version": "2.0.9",
"description": "",
"main": "dist/deck2gislayer.js",
"typings": "dist/types/index.d.ts",
"scripts": {
"build": "npm run build:assets && npm run build:docs && npm run build:js-demo && npm run build:typings",
"build-for-npm": "npm run build:assets && npm run build:docs && npm run build:js-prod && npm run build:typings",
"build:assets": "node build/assets",
"build:js-prod": "webpack --production",
"build:js-demo": "webpack --demo",
"build:typings": "tsc -p tsconfig.module.json --declaration --emitDeclarationOnly",
"build:docs": "node build/documentalist",
"dev": "npm run build:assets && webpack-dev-server",
"prettier": "prettier --check \"./**/*.{ts,tsx,js,json,html,css,md}\"",
"prettier:write": "prettier --write \"./**/*.{ts,tsx,js,json,html,css,md}\"",
"lint": "tslint -p tsconfig.json 'src/**/*.ts' 'demo/**/*.ts'",
"test:screenshots": "webpack --test && TEST_SUITE=screenshots jest --forceExit --projects test/screenshots --colors",
"test:screenshots:update": "webpack --test && TEST_SUITE=screenshots jest --forceExit --projects test/screenshots --colors -u",
"test:screenshots:watch": "webpack --test && TEST_SUITE=screenshots jest --forceExit --watchAll --projects test/screenshots --colors",
"test:screenshots:no-headless": "webpack --test && NO_HEADLESS=true TEST_SUITE=screenshots jest --forceExit --projects test/screenshots --colors"
},
"license": "BSD-2-Clause",
"files": [
"dist/*"
],
"devDependencies": {
"@2gis/mapgl": "1.42.0",
"@deck.gl/aggregation-layers": "8.8.17",
"@deck.gl/layers": "8.8.17",
"@documentalist/compiler": "^5.0.0",
"@types/jest": "^27.4.0",
"@types/jest-image-snapshot": "^4.3.1",
"@types/puppeteer": "^5.4.4",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^5.1.2",
"fork-ts-checker-webpack-plugin": "^4.1.4",
"http-server": "^14.1.1",
"jest": "^27.5.1",
"jest-dev-server": "^6.0.3",
"jest-image-snapshot": "^4.5.1",
"prettier": "^2.8.8",
"puppeteer": "^13.3.2",
"ts-jest": "^27.1.3",
"ts-loader": "8.4.0",
"typescript": "^4.8.4",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"wellknown": "^0.5.0"
},
"dependencies": {
"@2gis/gl-matrix": "^2.4.6",
"@deck.gl/core": "8.8.17",
"gl-state": "^1.0.0",
"uniq": "^1.0.1"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}