-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.53 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": "mr-transcript",
"version": "1.0.0",
"description": "Web application for UW students to make full usage of transcript",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client": "cd client && npm start",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/colelin26/wat-transcript.git"
},
"dependencies": {
"@material-ui/core": "^4.2.0",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-fileupload": "^1.0.0",
"moment": "^2.22.2",
"pdf-text-extract": "^1.5.0",
"superagent": "^4.1.0"
},
"devDependencies": {
"concurrently": "^4.0.1",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-react-app": "^3.0.6",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"prettier": "^1.15.3"
},
"author": "colelin26@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/colelin26/wat-transcript/issues"
},
"homepage": "https://github.com/colelin26/wat-transcript#readme"
}