-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 883 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
{
"name": "ogameapi",
"version": "1.0.0",
"description": "Ogame API explorer and analytic tool",
"main": "server.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"old-start": "ts-node-dev --respawn src/index.ts",
"build": "tsc"
},
"keywords": [
"ogame",
"api",
"explore",
"analytics"
],
"author": "Eghizio",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"node-fetch": "^2.6.2",
"xml2js": "^0.4.22"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.6",
"@types/node": "^13.13.5",
"@types/node-fetch": "^2.5.12",
"@types/xml2js": "^0.4.5",
"dotenv": "^10.0.0",
"nodemon": "^1.19.3",
"ts-node": "^8.10.1",
"ts-node-dev": "^1.1.8",
"typescript": "^3.8.3"
}
}