-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.61 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
{
"name": "swipe-right-for-cs",
"version": "0.1.0",
"license": "MIT",
"engines": {
"node": "6.11.x"
},
"scripts": {
"install": "cd client && YARN_PRODUCTION=false yarn install",
"start": "yarn run dev",
"test": "yarn run lint && yarn run jest && cd client && yarn run test",
"heroku-postbuild": "cd client && yarn run build",
"dev": "concurrently \"yarn run server-dev\" \"yarn run client\" \"yarn run storybook\"",
"server": "node server/index.js",
"server-dev": "NODE_ENV=development DATABASE_URL=http://localhost:5432/swipe-right-db ENABLE_RESEARCHER_ACCESS=true yarn run server",
"client": "cd client && yarn run start",
"storybook": "cd client && yarn run storybook",
"lint": "eslint --ext js -c server/.eslintrc server scripts",
"jest": "NODE_ENV=test DATABASE_URL=http://localhost:5432/swipe-right-db-test jest server --ci",
"ngrok": "ngrok http 3000 -host-header=\"localhost:8080\"",
"db-create-dev": "node scripts/db-create.js swipe-right-db",
"db-create-test": "node scripts/db-create.js swipe-right-db-test"
},
"cacheDirectories": [
"node_modules",
"client/node_modules"
],
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.1",
"express-rate-limit": "^2.9.0",
"jest": "^21.2.1",
"lodash": "^4.17.4",
"mustache": "^2.3.0",
"node-fetch": "^1.7.3",
"node-mocks-http": "^1.6.6",
"pg": "^7.3.0",
"react": "16",
"superagent": "^3.6.3",
"uuid": "^3.1.0"
},
"devDependencies": {
"concurrently": "^3.5.0",
"eslint": "^4.8.0",
"eslint-plugin-node": "^5.2.0",
"ngrok": "^2.2.22"
}
}