-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.43 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.43 KB
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
{
"name": "parent-assistent",
"version": "1.0.0",
"description": "## Our Team are : * Asmaa Thabet * Alaa Taima * Mohammed Qarmout * Asem Abu Msameh",
"main": "index.js",
"scripts": {
"lint:react": "cd client && npm run lint",
"lint": "eslint server/ && eslint test/",
"start": "NODE_ENV=production node server/index.js",
"dev": "NODE_ENV=development nodemon server/index.js",
"test": "NODE_ENV=testing node test/index.test.js | tap-spec",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G7/Parent-assistent.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GSG-G7/Parent-assistent/issues"
},
"homepage": "https://github.com/GSG-G7/Parent-assistent#readme",
"dependencies": {
"axios": "^0.19.0",
"bcrypt": "^3.0.6",
"cookie-parser": "^1.4.4",
"env2": "^2.2.2",
"express": "^4.17.1",
"express-favicon": "^2.0.1",
"jsonwebtoken": "^8.5.1",
"pg": "^7.12.1",
"pre-commit": "^1.2.2",
"yup": "^0.27.0"
},
"pre-commit": [
"lint:react",
"lint"
],
"devDependencies": {
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint": "^6.4.0",
"nodemon": "^1.19.2",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
}
}