-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "text-adventure",
"version": "1.1.2",
"description": "Run you very own Text Adventure server",
"keywords": [
"text-adventure",
"interactive-fiction"
],
"author": "Brooks Child <[email protected]>",
"license": "MIT License",
"main": "server.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc && npm run copy",
"copy": "npm run copy:web && npm run copy:cartridges",
"copy:cartridges": "cd src/cartridges && copyfiles -e **/*.ts **/*.* ../../dist/cartridges && cd ../..",
"copy:web": "cd src/web && copyfiles -e **/*.ts static/**/*.* ../../dist/web && cd ../..",
"start:web": "node dist/web/server.js",
"start:cli": "node dist/cli/server.js",
"start": "npm run start:cli"
},
"files": [
"server.js",
"README.md",
"cartridges",
"console",
"terminal"
],
"repository": {
"type": "git",
"url": "https://github.com/TheBroox/TextAdventure.js"
},
"dependencies": {
"@types/body-parser": "1.17.1",
"@types/express": "4.17.2",
"@types/express-session": "1.15.16",
"@types/jquery": "3.3.31",
"@types/node": "^13.1.1",
"body-parser": "^1.12.0",
"chalk": "3.0.0",
"console-read-write": "0.1.1",
"express": "^4.12.0",
"express-session": "^1.10.3",
"open": "^7.0.0"
},
"devDependencies": {
"copyfiles": "^2.1.1",
"rimraf": "^3.0.0",
"typescript": "^3.7.4"
}
}