-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.55 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
{
"name": "atlier",
"version": "0.0.1",
"license": "Unlicensed",
"main": "server/index.js",
"scripts": {
"server-dev": "npx nodemon --watch server server/index.js",
"client-dev": "npx webpack --config webpack-dev.config.js -w",
"client-prod": "npx webpack --config webpack-prod.config",
"eslint-dev": "npx eslint .",
"test": "jest --verbose",
"test-coverage": "jest --coverage --collectCoverageFrom=\"**/*.{js,jsx}\""
},
"dependencies": {
"@testing-library/jest-dom": "^5.16.5",
"axios": "^1.2.5",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"fast-average-color": "^9.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"babel-loader": "^9.1.2",
"babel-plugin-styled-components": "^2.0.7",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"nodemon": "^2.0.20",
"supertest": "^6.3.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}