-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.85 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
{
"name": "knife-store",
"version": "1.0.0",
"description": "",
"main": "./client/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server/server.js",
"build": "NODE_ENV=production webpack",
"dev": "concurrently \"cross-env NODE_ENV=development webpack serve --open\" \"cross-env NODE_ENV=development nodemon server/server.js\"",
"cypress": "cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wrreiff/Knife-Store.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wrreiff/Knife-Store/issues"
},
"homepage": "https://github.com/wrreiff/Knife-Store#readme",
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.2",
"@mui/material": "^5.6.3",
"@reduxjs/toolkit": "^1.8.1",
"domelementtype": "^2.3.0",
"cookie-parser": "^1.4.6",
"pg": "^8.7.3",
"postgres": "^3.1.0",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-modal": "^3.14.4",
"react-redux": "^8.0.1",
"react-router-dom": "^6.3.0",
"redux": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@testing-library/cypress": "^8.0.2",
"babel-loader": "^8.2.5",
"concurrently": "^7.1.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"cypress": "^9.6.0",
"eslint": "^8.14.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"image-webpack-loader": "^8.1.0",
"isomorphic-fetch": "^3.0.0",
"nodemon": "^2.0.15",
"sass": "^1.50.1",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
}
}