-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
35 lines (35 loc) · 899 Bytes
/
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
{
"name": "the-acme-item-tracker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"build:dev": "npm run build -- --watch --mode=development",
"start:dev": "nodemon server --ignore src/ --ignore dist/ & npm run build:dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.1",
"pg": "^8.7.3",
"sequelize": "^6.21.2"
},
"devDependencies": {
"redux-thunk": "^2.4.1",
"@babel/core": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"axios": "^0.27.2",
"babel-loader": "^8.2.5",
"nodemon": "^2.0.18",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.2",
"redux": "^4.2.0",
"redux-logger": "^3.0.6",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
}
}