-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1013 Bytes
/
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
{
"name": "mc-realms",
"version": "0.1.0",
"private": true,
"main": "index.js",
"author": "revzim <https://github.com/revzim>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --transpile-only src/index.ts",
"build": "tsc",
"start": "node lib/index.js",
"test": "node tests/index.js",
"pkg": "pkg --output build/mc-realms-app ."
},
"bin": "lib/index.js",
"pkg": {
"assets": [
"node_modules/**/*",
"lib/**/*",
"public/**/*"
],
"targets": [
"node14-macos-x64",
"node14-win-x64",
"node14-linux-x64"
]
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^16.4.1",
"ts-node": "^10.1.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
},
"dependencies": {
"axios": "^0.22.0",
"chalk": "^4.1.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"open": "^8.2.1"
}
}