-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2 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
{
"name": "sleuth-coop",
"version": "1.0.0",
"description": "",
"main": "index.js",
"jest": {
"testRegex": "__test__/*"
},
"scripts": {
"start": "node src/server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build",
"client": "cd client && npm start",
"server": "nodemon src/server.js",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\" \"npm run sass\"",
"express-test": "NODE_ENV=test jest --runInBand --forceExit",
"react-test": "cd client && npm i && npm test",
"test": "npm run express-test && npm run react-test",
"local-test": "npm run express-test && cd client && npm test",
"sass": "sass --watch ./client/src/private/sass:./client/public/css",
"build-db": "node src/database/db_build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-14/sleuth-coop.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-14/sleuth-coop/issues"
},
"homepage": "https://github.com/fac-14/sleuth-coop#readme",
"devDependencies": {
"concurrently": "^4.0.1",
"babel-eslint": "9.0.0",
"eslint": "5.6.0",
"eslint-config-node": "^4.0.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-recommended": "^4.0.0",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"supertest": "^3.3.0",
"nodemon": "^1.18.4"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"create-react-app": "^2.0.3",
"env2": "^2.2.2",
"express": "^4.16.3",
"express-fileupload": "^1.0.0-alpha.1",
"express-session": "^1.15.6",
"express-validator": "^5.3.0",
"jsonwebtoken": "^8.4.0",
"mkdirp": "^0.5.1",
"nodemailer": "^4.7.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"pg": "^7.5.0",
"pg-promise": "^8.5.0",
"sass": "^1.14.1",
"serve-favicon": "^2.5.0"
},
"engines": {
"node": "v10.10.0"
}
}