forked from erikvullings/agent-smith
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.65 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.65 KB
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": "agent-smith",
"version": "1.0.0",
"description": "An agent-based crowd simulator in 2D",
"main": "index.js",
"scripts": {
"clean": "pnpm run -r clean",
"start": "pnpm run -r dev",
"init": "pnpm run -r init",
"docker:build": "docker build -t tnocs/copper .",
"docker:push": "docker push tnocs/copper",
"docker:run": "docker stop copper-v2018 & docker rm copper-v2018 & docker run -p 8008:3008 --name copper-v2018 tnocs/copper",
"docker:build-fast": "docker build -t tnocs/copper:fast -f ./copper-dockerfile-fast .",
"docker:run-fast": "docker stop copper-v2018 & docker rm copper-v2018 & docker run -p 8008:3008 --name copper-v2018 tnocs/copper:fast",
"docker:push-fast": "docker push tnocs/copper:fast"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erikvullings/agent-smith.git"
},
"keywords": [],
"author": "Erik Vullings <erik.vullings@gmail.com> (http://www.tno.nl)",
"license": "MIT",
"bugs": {
"url": "https://github.com/erikvullings/agent-smith/issues"
},
"homepage": "https://github.com/erikvullings/agent-smith#readme",
"devDependencies": {
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"none": "^1.0.0",
"pnpm": "^6.29.1",
"rimraf": "^3.0.2",
"typedoc": "^0.22.11"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"ioredis": "^4.28.4",
"node-test-bed-adapter": "^2.2.1",
"osrm-rest-client": "^0.1.7",
"perf_hooks": "0.0.1",
"redis": "^4.0.3",
"rest-easy-loki": "^1.4.0",
"typescript": "^4.5.5"
}
}