-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.57 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
{
"name": "fullstackopen-part3",
"version": "1.0.0",
"description": "Full Stack Open course by University of Helsinki and partners",
"main": "app.js",
"scripts": {
"dev": "nodemon app.js",
"start": "node app.js",
"test": "NODE_ENV=test jest --verbose --runInBand",
"build:ui": "rm -rf build && cd ./puhelinluettelo/ && npm run build --prod && cp -r build ../build",
"deploy": "git push heroku main",
"deploy:full": "npm run build:ui && git add . && git commit -m uibuild && git push && npm run deploy",
"logs:prod": "heroku logs --tail",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/FUKA-INNOVATIONS/fullstackopen-part3.git"
},
"author": "Fuwad Kalhroi",
"license": "ISC",
"bugs": {
"url": "https://github.com/FUKA-INNOVATIONS/fullstackopen-part3/issues"
},
"homepage": "https://github.com/FUKA-INNOVATIONS/fullstackopen-part3#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mongoose": "^6.0.11",
"mongoose-unique-validator": "^3.0.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.5.1",
"nodemon": "^2.0.13",
"supertest": "^6.2.2"
},
"jest": {
"testEnvironment": "node"
}
}