-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.87 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
{
"name": "fullstack-phonebook-application",
"version": "1.0.0",
"description": "fullstack-phonebook-application",
"main": "index.js",
"scripts": {
"serve": "cross-env webpack-dev-server --open --mode development",
"dev": "cross-env nodemon index.js",
"start": "cross-env NODE_ENV=production node index.js",
"start:test": "cross-env NODE_ENV=test node index.js",
"test": "jest",
"eslint": "eslint './**/*.{js,jsx}'",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "webpack --mode production"
},
"engines": {
"node": ">=18.16.0"
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"^.+\\.svg$": "jest-svg-transformer",
"^.+\\.(css|less|scss)$": "identity-obj-proxy"
}
},
"author": "yumeangelica",
"license": "MIT",
"devDependencies": {
"eslint": "^8.56.0",
"nodemon": "~3.0.1",
"xo": "^0.57.0"
},
"dependencies": {
"@babel/core": "^7.22.20",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"axios": "^1.5.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"dotenv": "^16.4.1",
"dotenv-webpack": "^8.0.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mongoose": "^8.1.1",
"morgan": "~1.10.0",
"npm": "^10.4.0",
"react": "^18.2.0",
"react-bootstrap": "^2.10.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.16.0",
"style-loader": "^3.3.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}