-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.8 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
{
"name": "esmee-fairbairn-foundation",
"version": "1.0.0",
"description": "A prototype to increase efficency in the stage 1 applcantion process",
"main": "index.js",
"scripts": {
"buildtest": "NODE_ENV=local node server/db/testDB/setUpDB.js",
"test": "NODE_ENV=local tape ./server/test/**/*.js | tap-spec",
"test:travis": "NODE_ENV=test tape ./server/test/**/*.js | tap-spec",
"lint": "./node_modules/.bin/eslint ./server/**/*.js",
"lint-fix": "npm run lint -- --fix",
"start": "NODE_ENV=production npm run start:server",
"dev:server": "nodemon server/index.js",
"start:server": "node server/index.js",
"start:react": "cd client && npm start",
"dev": "concurrently --kill-others-on-fail \"npm run dev:server\" \"npm run start:react\"",
"heroku-postbuild": "cd client && npm i && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-graduate-programme/Esmee-Fairbairn-Foundation.git"
},
"author": "FAC Faunders Programme",
"license": "MIT",
"bugs": {
"url": "https://github.com/fac-graduate-programme/Esmee-Fairbairn-Foundation/issues"
},
"homepage": "https://github.com/fac-graduate-programme/Esmee-Fairbairn-Foundation#readme",
"devDependencies": {
"concurrently": "^4.1.2",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"nodemon": "^1.19.2",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
},
"dependencies": {
"compression": "^1.7.4",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"helmet": "^3.21.0",
"multer": "^1.4.2",
"pg": "^7.12.1",
"react-ga": "^2.6.0",
"yup": "^0.27.0"
}
}