forked from MindFull-app/MindFull
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.63 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.63 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
55
56
{
"name": "mindfull",
"version": "1.0.0",
"description": "Connecting patients and therapists",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server/server.js",
"build": "NODE_ENV=production webpack",
"dev": "concurrently \"NODE_ENV=development webpack-dev-server --open --hot\" \"nodemon server/server.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/janemkim/MindFull.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/janemkim/MindFull/issues"
},
"homepage": "https://github.com/janemkim/MindFull#readme",
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"babel-loader": "^8.2.2",
"concurrently": "^5.3.0",
"css-loader": "^5.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"material-ui": "^0.20.2",
"mongoose": "^5.11.11",
"nodemon": "^2.0.7",
"path": "^0.12.7",
"pg": "^8.5.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"sass-loader": "^10.1.1",
"sequelize": "^6.3.5",
"style-loader": "^2.0.0",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.11.0"
},
"devDependencies": {
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0"
}
}