-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.49 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": "spacetraders.js",
"version": "1.0.0",
"description": "JS based SpaceTraders library",
"main": "src/index.ts",
"dependencies": {
"@types/axios": "^0.14.0",
"asynckit": "^0.4.0",
"axios": "^1.4.0",
"combined-stream": "^1.0.8",
"delayed-stream": "^1.0.0",
"express": "^4.18.2",
"follow-redirects": "^1.15.2",
"form-data": "^4.0.0",
"mime-db": "^1.52.0",
"mime-types": "^2.1.35",
"proxy-from-env": "^1.1.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^20.1.1",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.40.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"nodemon": "^2.0.22",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npx nodemon",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matthe815/SpaceTraders.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/matthe815/SpaceTraders/issues"
},
"homepage": "https://github.com/matthe815/SpaceTraders#readme"
}