-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.69 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
54
55
56
57
58
59
{
"name": "portfolio-cms",
"version": "1.0.9",
"description": "A Headless CMS built with Express,Typescript and MongoDB",
"main": "server.ts",
"scripts": {
"start:auth[local]": "cross-env NODE_ENV=local nodemon auth.ts",
"start:api[local]": "cross-env NODE_ENV=local nodemon api.ts",
"start:admin[local]": "cross-env NODE_ENV=local nodemon admin.ts",
"start:auth[dev]": "cross-env NODE_ENV=dev nodemon auth.ts",
"start:api[dev]": "cross-env NODE_ENV=dev nodemon api.ts",
"start:admin[dev]": "cross-env NODE_ENV=dev nodemon admin.ts",
"start:auth[prod]": "cross-env NODE_ENV=prod node dist/auth.js",
"start:api[prod]": "cross-env NODE_ENV=prod node dist/api.js",
"test:inspect": "python tests/main.py",
"build": "tsc -p .",
"prettier": "prettier --write .",
"clean": "rm -rf node_modules/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/limebrew-org/PortfolioCMS"
},
"keywords": [
"Express",
"Typescript",
"Content-Management-System",
"Docker"
],
"author": "Limebrew",
"license": "MIT",
"bugs": {
"url": "https://github.com/limebrew-org/PortfolioCMS/issues"
},
"homepage": "https://github.com/limebrew-org/PortfolioCMS#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/jsonwebtoken": "^9.0.1",
"@types/redis": "^4.0.11",
"nodemon": "^2.0.20",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"bcrypt": "^5.0.0",
"cookie": "^0.5.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.8.1",
"redis": "^4.6.4"
}
}