-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 2.08 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "art-gallery",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"client": "cd client && npm run start",
"start": "NODE_ENV=production node server/index.js",
"dev": "NODE_ENV=development nodemon server/index.js",
"project-setup": "npm install && cd client && npm install",
"heroku-postbuild": "cd client && npm install && npm run build",
"test": "NODE_ENV=test jest --no-cache --runInBand --coverage",
"kill": "fuser -k 5000/tcp",
"kill-run": "fuser -k 5000/tcp && npm run dev",
"lint": "eslint server/",
"lint-fix": "eslint server/ --fix",
"lint:react": "cd client && npm run lint",
"build:db": "NODE_ENV=test node server/database/data/build",
"init": "npm i && cd client && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G8/art-gallery.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-G8/art-gallery/issues"
},
"homepage": "https://github.com/GSG-G8/art-gallery#readme",
"dependencies": {
"babel-jest": "^24.9.0",
"bcrypt": "^4.0.1",
"cloudinary": "^1.22.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-form-data": "^2.0.13",
"jest": "^24.9.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"nodemailer": "^6.4.10",
"pg": "^7.18.2",
"prettier": "^2.0.2",
"stripe": "^8.69.0",
"yup": "^0.28.3"
},
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"nodemon": "^2.0.2",
"pre-commit": "^1.2.2",
"supertest": "^4.0.2"
},
"pre-commit": [
"test",
"lint",
"lint:react"
]
}