-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 2 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
{
"name": "project-atelier",
"version": "1.0.0",
"description": "Modernization of e-commerce site",
"main": "index.js",
"scripts": {
"test": "jest",
"client-dev": "npx webpack --watch",
"server-dev": "npx nodemon --watch server server/server.js",
"coverage": "jest --env=jsdom --coverage",
"coverage:single": "jest --env=jsdom --coverage client/components/relatedItems/Spec/RelatedItems.test.jsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chic-Fil-Async/Project-Atelier.git"
},
"author": "Chris Cheng, Maysie Ocera, William Tucker",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/Chic-Fil-Async/Project-Atelier/issues"
},
"homepage": "https://github.com/Chic-Fil-Async/Project-Atelier#readme",
"devDependencies": {
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"axios-mock-adapter": "^1.22.0",
"babel-loader": "^9.1.3",
"babel-plugin-styled-components": "^2.1.4",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.6.0",
"jest-environment-jsdom": "^29.7.0",
"nodemon": "^3.1.0",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev": "^1.1.1"
},
"dependencies": {
"axios": "^1.6.7",
"date-fns": "^3.3.1",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"jest": "^29.7.0",
"live-server": "^1.2.2",
"morgan": "^1.10.0",
"path": "^0.12.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"styled-components": "^6.1.8"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"@testing-library/jest-dom"
]
}
}