-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.55 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
{
"name": "shrinc",
"version": "1.0.0",
"main": "index.js",
"description": "## **Team Members** * Abdallah Ammar (Team Lead) * Hashem Taha * Fadi Omar * Mohammad Alhallaq * Asmaa Thabet",
"scripts": {
"test": "NODE_ENV=test node test | tap-spec",
"lint": "eslint server",
"lint:react": "cd client/ && npm run lint",
"start": "NODE_ENV=production node ./server",
"dev": "NODE_ENV=development nodemon ./server",
"heroku-postbuild": "cd client && npm i && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G7/shrinc.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-G7/shrinc/issues"
},
"homepage": "https://github.com/GSG-G7/shrinc#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-react": "^7.16.0",
"nodemon": "^1.19.2",
"pre-commit": "^1.2.2",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
},
"dependencies": {
"airtable": "^0.7.1",
"bcrypt": "^3.0.6",
"cloudinary": "^1.16.0",
"cookie-parser": "^1.4.4",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-form-data": "^2.0.10",
"jsonwebtoken": "^8.5.1",
"typescript": "^3.6.4",
"yup": "^0.27.0"
},
"pre-commit": [
"lint:react",
"lint",
"test"
],
"directories": {
"test": "test"
}
}