-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "store",
"version": "1.0.0",
"description": "WEPPO project",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"dev": "nodemon ./src/app.ts",
"start": "node ./dist/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keszinaj/store.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/keszinaj/store/issues"
},
"homepage": "https://github.com/keszinaj/store#readme",
"devDependencies": {
"@types/express": "^4.17.15",
"@types/node": "^18.13.0",
"@types/validator": "^13.7.12",
"argon2": "^0.30.3",
"body-parser": "^1.20.1",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-validator": "^6.14.3",
"nodemon": "^2.0.20",
"stripe": "^11.10.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"ejs": "^3.1.8",
"multer": "^1.4.5-lts.1",
"pg": "^8.9.0",
"pg-hstore": "^2.3.4",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.28.0",
"sequelize-typescript": "^2.1.5"
}
}