-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.85 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.85 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
52
53
54
{
"name": "threeflows",
"version": "0.1.0",
"engines": {
"node": "^6.11.1"
},
"main": "server/index.js",
"scripts": {
"install": "cd client && YARN_PRODUCTION=false yarn install --frozen-lockfile",
"start": "yarn run dev",
"dev": "concurrently \"NODE_ENV=development yarn run server-dev\" \"yarn run client\"",
"server": "node server/index.js",
"server-dev": "cross-env READ_LOCAL_EVIDENCE=true IS_SENSITIVE_REVIEWING_ENABLED=true ENABLE_RESEARCHER_ACCESS=true DATABASE_URL=http://localhost:5432/teacher-moments-db NODE_ENV=development yarn run server",
"client": "cd client && yarn run start",
"heroku-postbuild": "cd client && yarn run build",
"lint": "eslint --ext jsx --ext js -c server/.eslintrc server",
"test": "yarn run lint && cd client && yarn run test",
"db-create-dev": "node scripts/db-create.js teacher-moments-db",
"update-consent": "node scripts/updateConsent.js",
"prep-consent": "node scripts/prepConsent.js tmp/consented-latest-raw.csv"
},
"dependencies": {
"aws-sdk": "^2.4.8",
"axios": "^0.18.0",
"babel-plugin-transform-class-properties": "^6.11.5",
"basic-auth": "^1.0.4",
"body-parser": "^1.15.1",
"concurrently": "^3.5.0",
"date-fns": "^1.3.0",
"express": "4.13.3",
"express-rate-limit": "^2.9.0",
"lodash": "^4.13.1",
"material-ui": "^0.18.0",
"moment": "^2.18.1",
"mustache": "^2.3.0",
"node-mocks-http": "^1.6.6",
"pg": "^5.1.0",
"reactjs-popup": "^1.3.2",
"superagent": "^2.0.0",
"uuid": "^2.0.2",
"watson-developer-cloud": "^3.18.1"
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"babel-plugin-react-transform": "^2.0.2",
"cross-env": "^5.0.5",
"csv-parse": "^2.1.0",
"eslint": "^4.3.0",
"eslint-plugin-node": "^5.1.1",
"livereactload": "^2.2.3",
"react-proxy": "^1.1.8"
}
}