-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 1.12 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
{
"name": "devsurvey",
"version": "1.0.0",
"description": "minimalistic version of osscameroon recognition system",
"main": "index.js",
"scripts": {
"start": "yarn build && node ./dist",
"dev": "ENVIRONMENT=dev nodemon ./src/index.ts",
"build": "rm -rf ./dist/views ./dist/res && tsc --project ./ && cp -R ./src/views ./src/res ./dist/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/osscameroon/devsurvey.git"
},
"author": "osscameroon",
"license": "MIT",
"bugs": {
"url": "https://github.com/osscameroon/devsurvey/issues"
},
"homepage": "https://github.com/osscameroon/devsurvey#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",
"nodemon": "^2.0.7",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}