-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.29 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "torotoro",
"version": "0.1.0",
"description": "torotoro",
"repository": "https://https://github.com/dev-academy-challenges/torotoro",
"main": "server/index.js",
"scripts": {
"build": "run-p build:client",
"build:client": "npm run webpack -- --mode production",
"start": "node server",
"test": "jest",
"test:watch": "jest --noStackTrace --watchAll",
"dev": "run-p dev:client dev:server",
"dev:client": "npm run webpack -- --watch",
"dev:server": "nodemon --watch server server/index.js",
"webpack": "webpack --config ./client/webpack.config.js",
"lint": "eslint --ext .js,.jsx .",
"h:deploy": "git push heroku main"
},
"keywords": [
"fullstack"
],
"author": "EDA",
"license": "ISC",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread"
]
},
"eslintConfig": {
"extends": "eda",
"ignorePatterns": [
"bundle.js"
]
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"babel-loader": "^8.3.0",
"css-loader": "^5.2.7",
"eslint": "7.20.0",
"eslint-config-eda": "0.1.4",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.6.2",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"react": "^17.0.1",
"react-dom": "^17.0.2",
"react-redux": "^7.2.9",
"react-router-dom": "^6.22.3",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"sass": "^1.72.0",
"sass-loader": "^11.1.1",
"sqlite3": "^5.1.7",
"style-loader": "^2.0.0",
"supertest": "^6.3.4",
"webpack": "^5.91.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.15.14",
"express": "^4.19.1",
"file-loader": "^6.2.0",
"react-responsive": "^9.0.2",
"superagent": "^6.1.0",
"url-loader": "^4.1.1",
"use-sound": "^4.0.1"
}
}