-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.92 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
{
"name": "solo-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "playwright test",
"build": "cross-env NODE_ENV=production webpack",
"dev": "concurrently \"cross-env NODE_ENV=development webpack-dev-server --open /\" \"cross-env NODE_ENV=development nodemon ./server/server.js\"",
"start": "nodemon ./server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arishoham/solo-project.git"
},
"author": "Ari",
"license": "ISC",
"bugs": {
"url": "https://github.com/arishoham/solo-project/issues"
},
"homepage": "https://github.com/arishoham/solo-project#readme",
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@fontsource/roboto": "^4.5.3",
"@mui/icons-material": "^5.4.2",
"@mui/material": "^5.4.2",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.0",
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.7",
"node-html-parser": "^5.2.0",
"pg": "^8.7.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"react-router-dom": "^6.2.1"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@playwright/test": "^1.20.1",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.6.0",
"eslint": "^8.9.0",
"eslint-plugin-react": "^7.28.0",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.15",
"prettier": "^2.6.1",
"sass": "^1.49.7",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-hot-middleware": "^2.25.1"
},
"nodemonConfig": {
"ignore": [
"server/data/*",
"client/*"
]
}
}