-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
65 lines (65 loc) · 1.9 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
{
"name": "frontendcapstone",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"start": "node server/index.js && npx tailwindcss -i ./src/input.css -o ./dist/output.css --watch",
"test": "npx jest --verbose --coverage",
"dev": "webpack --watch",
"build": "npx webpack & npx tailwindcss -i ./src/input.css -o ./dist/output.css",
"tailwind": "npx tailwindcss -i ./src/input.css -o ./dist/output.css --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.3",
"http-proxy-middleware": "^2.0.6",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"tailwindcss": "^3.3.2",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.18",
"axios": "^1.4.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"lodash": "^4.17.21",
"os-browserify": "^0.3.0",
"path": "^0.12.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.1",
"react-star-ratings": "^2.3.0",
"stream-browserify": "^3.0.0",
"tailwind": "^4.0.0"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"testEnvironment": "jest-environment-jsdom"
}
}