-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.98 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
{
"name": "kombucha",
"version": "1.0.0",
"description": "Fully integrated, end-to-end educational platform for the Vanderbilt Undergraduate Microbiome Society (VUMS)",
"main": "index.js",
"scripts": {
"start": "concurrently \"cd client && npm start\" \"cd server && npm start\"",
"test": "npm run install-deep && cd client && npm test && cd ../server && npm run test",
"format": "prettier --write **/*.ts **/*.tsx **/*.js",
"pretest": "eslint --ext .ts --ext .js --ext .tsx .",
"install-deep": "npm i && cd client && npm i && cd ../server && npm i",
"deploy-backend": "git add . && git commit -m Heroku && git subtree push --prefix server heroku master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aadarshjha/kombucha.git"
},
"author": "Aadarsh Jha, Ashwin Kumar, Sam Lee, Zeyad Moustafa",
"license": "MIT",
"bugs": {
"url": "https://github.com/aadarshjha/kombucha/issues"
},
"homepage": "https://github.com/aadarshjha/kombucha#readme",
"dependencies": {
"async": "^3.2.0",
"concurrently": "^6.0.0",
"deep": "^0.0.2",
"moment": "^2.29.1",
"react-markdown": "^5.0.3",
"react-quill": "^1.3.5",
"react-quill-antd": "^1.0.1-beta",
"react-redux": "^7.2.3",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"typescript": "^4.2.3"
},
"devDependencies": {
"@types/async": "^3.2.5",
"@types/express": "^4.17.11",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-only-warn": "^1.0.2",
"eslint-plugin-react": "^7.22.0",
"prettier": "2.2.1",
"react-test-renderer": "^17.0.2"
}
}