-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
42 lines (42 loc) · 1.4 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
{
"name": "miniyotas",
"version": "1.0.0",
"description": "minimalistic version of OSS Cameroon recognition system",
"main": "index.js",
"scripts": {
"start": "yarn build && node ./dist",
"dev": "cross-env GOOGLE_ANALYTICS_ID= nodemon ./src/index.ts",
"build": "rm -rf ./dist/views ./dist/res; tsc --project ./; cp -R ./src/views ./src/res ./dist/",
"package": "docker build -t miniyotas:latest -f .",
"package:prod": "docker build -t miniyotas-prod:latest -f Dockerfile.prod .",
"package:run:prod": "docker run -it -p 3000:3000 --env-file .env --name miniyotas_prod miniyotas-prod",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/osscameroon/miniyotas.git"
},
"author": "osscameroon",
"license": "MIT",
"bugs": {
"url": "https://github.com/osscameroon/miniyotas/issues"
},
"homepage": "https://github.com/osscameroon/miniyotas#readme",
"dependencies": {
"express": "^4.17.1",
"express-handlebars": "^5.3.2",
"fuse.js": "^6.4.6",
"google-spreadsheet": "^3.1.15",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/express-handlebars": "^5.3.0",
"@types/google-spreadsheet": "^3.1.2",
"@types/node": "^15.12.2",
"cross-env": "^7.0.3",
"nodemon": "^2.0.7",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}