-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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
{
"name": "@halftheopposite/dungeon",
"description": "A configurable and editable dungeon generator using Binary-Space Partitioning and hand-made rooms.",
"keywords": [
"procedural",
"map",
"generator",
"dungeon",
"games",
"level",
"roguelike",
"typescript"
],
"version": "0.2.3",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/halftheopposite/dungeon"
},
"author": {
"name": "Aymeric Chauvin",
"url": "https://halftheopposite.dev"
},
"license": "MIT",
"scripts": {
"build:dev": "esbuild src/app/index.tsx --define:process.env.NODE_ENV=\\\"development\\\" --bundle --sourcemap=external --outfile=public/script.js",
"build:prod": "esbuild src/app/index.tsx --define:process.env.NODE_ENV=\\\"production\\\" --bundle --minify --outfile=public/script.js",
"build:npm": "tsc --p tsconfig.json",
"start": "nodemon --watch \"src/**\" --ext \"ts,tsx,json\" --exec \"yarn run build:dev && ts-node src/dev/server.ts\""
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.6",
"@types/seedrandom": "^2.4.28",
"esbuild": "^0.8.11",
"express": "^4.17.1",
"nodemon": "^2.0.6",
"pixi.js": "^5.3.6",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"ts-node": "^9.1.1",
"typescript": "^4.0.5"
},
"dependencies": {
"nanoid": "^3.1.20",
"seedrandom": "^3.0.5"
}
}