-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.76 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.76 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
57
58
59
60
61
62
63
64
65
{
"name": "vineverse",
"version": "1.0.0",
"description": "",
"main": "/src/client/index.js",
"scripts": {
"watch": "run-p watch:server watch:client",
"watch:server": "nodemon -w src/server/ src/server/app.js",
"watch:client": "webpack --watch",
"start": "node src/server/app.js",
"lint": "eslint src",
"jest": "jest",
"build": "webpack",
"test": "run-s lint jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/braxnu/vineverse.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/braxnu/vineverse/issues"
},
"homepage": "https://github.com/braxnu/vineverse#readme",
"dependencies": {
"@reduxjs/toolkit": "^1.5.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"email-validator": "^2.0.4",
"express": "^4.17.1",
"express-session": "^1.17.1",
"mongoose": "^5.11.13",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"regenerator-runtime": "^0.13.7"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.13.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.4.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"enzyme": "^3.11.0",
"eslint": "^7.16.0",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-react": "^7.21.5",
"jest": "^26.6.3",
"node-sass": "^5.0.0",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"webpack": "^5.11.0",
"webpack-cli": "^4.3.0"
}
}