-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.39 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
{
"name": "wordle-riff-exercise",
"version": "0.0.1",
"description": "A riff on the ever-popular game, Wordle",
"keywords": [],
"engines": {
"node": "18.x",
"npm": "8.x"
},
"main": "src/index.js",
"proxy": "localhost:5000",
"scripts": {
"build": "webpack --mode production",
"build:watch": "webpack --watch --mode development",
"cy:open": "cypress open",
"cy:run": "cypress run",
"lint": "eslint . --ext .js,.jsx --report-unused-disable-directives --max-warnings 0 --cache",
"serve": "node server.js",
"serve:ci": "cross-env PORT=3000 pm2 start server.js & wait-on http://localhost:3000",
"serve:dev": "concurrently \"npm run build:watch\" \"nodemon server.js\"",
"start": "webpack serve --mode development",
"test": "jest --watchAll",
"test:ci": "jest --ci"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/material": "^5.11.7",
"cross-env": "^7.0.3",
"date-fns": "^2.28.0",
"express": "^4.18.2",
"jest": "^29.4.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-router-dom": "^6.8.0"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@testing-library/cypress": "^9.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.2",
"babel-plugin-styled-components": "^2.0.2",
"concurrently": "^7.0.0",
"core-js": "^3.20.3",
"cypress": "^12.5.1",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"html-webpack-plugin": "^5.5.0",
"jest-environment-jsdom": "^29.4.1",
"nodemon": "^2.0.15",
"pm2": "^5.2.2",
"prettier": "^2.8.4",
"wait-on": "^7.0.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}