forked from BadIdeaFactory/talking-point-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.76 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
68
69
70
71
72
73
74
75
76
77
{
"name": "talking-point-tracker",
"version": "0.1.0",
"description": "Keep track of what is being discussed on live television.",
"main": "index.js",
"repository": "[email protected]:BadIdeaFactory/talking-point-tracker.git",
"author": "Bad Idea Factory <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"apollo-boost": "^0.1.22",
"apollo-client": "^2.4.7",
"cors": "^2.8.5",
"d3-array": "^2.0.3",
"d3-scale": "^2.1.2",
"d3-selection": "^1.3.2",
"date-fns": "^1.29.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0",
"graphql-tag": "^2.10.0",
"moment": "^2.24.0",
"node-schedule": "^1.3.0",
"opened-captions": "^1.0.4",
"parcel": "^1.10.3",
"pg": "^7.18.2",
"pg-hstore": "^2.3.3",
"prop-types": "^15.6.2",
"query-string": "^6.2.0",
"react": "^16.0.0",
"react-apollo": "^2.3.1",
"react-datepicker": "^2.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.1.0",
"react-router-dom": "^4.3.1",
"recharts": "^1.5.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"sequelize": "^4.44.4",
"sequelize-cli": "^4.1.1",
"styled-components": "^4.1.3",
"wait-on": "^3.1.0"
},
"scripts": {
"parcel:dev": "./node_modules/.bin/parcel src/client/index.html",
"parcel:watch": "./node_modules/.bin/parcel watch src/client/index.html",
"parcel:build": "./node_modules/.bin/parcel build src/client/index.html",
"start-nlp": "nodemon --watch nlp/app.py --exec 'source .venv3/bin/activate && python3 nlp/app.py'",
"start-node": "nodemon --watch src --exec ./node_modules/.bin/babel-node -- src/server/index.js",
"start": "concurrently 'npm run start-nlp' 'npm run start-node' 'npm run parcel:dev'",
"build": "babel src -d lib",
"lint": "./node_modules/.bin/eslint 'src/**/*.js'",
"test": "",
"db:migrate": "sequelize db:migrate",
"db:start": "pg_ctl -D db start",
"db:stop": "pg_ctl -D db stop",
"start-nodey": "nodemon --watch src --exec yarn babel-node -- src/server/index.js",
"starty": "concurrently 'yarn start-nlp' 'yarn start-node' 'yarn parcel:dev'"
},
"devDependencies": {
"@babel/core": "7.1.2",
"@babel/node": "7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-plugin-styled-components": "^1.10.0",
"babel-plugin-transform-do-expressions": "^6.22.0",
"concurrently": "^4.0.1",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"nodemon": "^1.18.5"
}
}