-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.56 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
{
"name": "homesafe",
"version": "1.0.0",
"description": "A web application for parents to notify schools if someone other than the usual guardian will be picking the child up from school",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test tape tests/*.test.js | tap-spec",
"babel": "babel -w ./public/index.js -d build",
"start": "node ./src/index.js",
"dev": "nodemon ./src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-12/homesafe.git"
},
"author": "Sophie, Fatimat, Dragomir and Kitty",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-12/homesafe/issues"
},
"homepage": "https://github.com/fac-12/homesafe#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"connect-flash": "^0.1.1",
"env2": "^2.2.0",
"express": "^4.16.2",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.6",
"nodemailer": "^4.4.1",
"pg": "^7.4.1",
"pg-promise": "^7.3.3",
"session-memory-store": "^0.2.2",
"validator": "^9.2.0"
},
"devDependencies": {
"babel-watch": "^2.0.7",
"eslint": "^4.15.0",
"nodemon": "^1.14.10",
"supertest": "^3.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.8.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"prettier-eslint": "^8.7.1"
}
}