-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.55 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": "sc-manifest",
"version": "1.0.0",
"description": "A manifest manager for Star Citizen Traders",
"main": "index.js",
"typings": "./backend/types.d.ts",
"scripts": {
"build": "tsc",
"dev": "nodemon -r dotenv/config --ignore data/ index.ts",
"start": "node -r dotenv/config index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start:frontend": "yarn --cwd ./frontend start",
"build:frontend": "yarn --cwd ./frontend build",
"dep:frontend": "yarn --cwd ./frontend install",
"swagger-autogen": "node swagger.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/macniel/sc-manifest.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/macniel/sc-manifest/issues"
},
"homepage": "https://github.com/macniel/sc-manifest#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.6",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-handlebars": "^6.0.2",
"guid": "0.0.12",
"momentjs": "^2.0.0",
"node-fetch": "^2.6.6",
"react": "^17.0.2",
"swagger-autogen": "^2.19.0",
"swagger-ui-express": "^4.3.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.13",
"@types/guid": "^1.0.0",
"@types/node": "^17.0.36",
"@types/node-fetch": "^2.6.1",
"@types/swagger-ui-express": "^4.1.3",
"bcrypt": "^5.0.1",
"jsonwebtoken": "^8.5.1",
"server-timing": "^3.3.2",
"server-timings": "^2.0.1",
"typescript": "^4.7.2"
}
}