-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.61 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
{
"name": "covid-simulation",
"version": "0.0.18",
"description": "Covid Simulation",
"main": "dist/simulation.js",
"typings": "dist/es6/src/index.d.ts",
"author": {
"name": "Mstislav Zhivodkov",
"email": "stevemyz@gmail.com",
"url": "https://trufi.github.io/"
},
"scripts": {
"start": "npm run dev",
"build": "npm run build:bundle && npm run build:typings",
"build:bundle": "webpack --production",
"build:typings": "tsc -p tsconfig.es6.json --declaration --emitDeclarationOnly",
"build:demo": "webpack --demo --production",
"dev": "webpack-dev-server --demo",
"data": "node data/hook.js",
"lint": "tslint 'src/**/*.ts'",
"prettier": "prettier --check \"./**/*.{ts,tsx,js,json,html,css}\"",
"test": "npm run lint && npm run prettier && npm run build",
"prepublishOnly": "rm -rf dist && npm run build"
},
"dependencies": {
"2gl": "^0.8.0",
"@2gis/gl-matrix": "^2.4.6",
"@2gis/mapgl": "^1.29.0",
"@types/kdbush": "^3.0.0",
"dat.gui": "^0.7.6",
"kdbush": "^3.0.0",
"tslib": "^1.10.0"
},
"devDependencies": {
"@types/dat.gui": "^0.7.5",
"@types/fs-extra": "^8.1.0",
"fork-ts-checker-webpack-plugin": "^4.0.2",
"fs-extra": "^8.1.0",
"prettier": "^1.19.1",
"simplify-js": "^1.2.4",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}