mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
got add, remove, and edit actions working
This commit is contained in:
24
package.json
24
package.json
@@ -4,19 +4,27 @@
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"start": "webpack-dev-server --mode development --progress",
|
||||
"start:client": "webpack-dev-server --mode development --progress",
|
||||
"build": "webpack --mode production",
|
||||
"test": "jest --watch"
|
||||
"test": "jest --watch",
|
||||
"start:server": "nodemon server/index.js",
|
||||
"start": "run-p start:server start:client"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"@types/express": "^4.16.1",
|
||||
"@types/body-parser": "^1.17.0",
|
||||
"@types/node": "~10.12.21",
|
||||
"@types/jest": "^23.3.13",
|
||||
"@types/react": "^16.7.20",
|
||||
"@types/react-dom": "^16.0.11",
|
||||
"@types/react-redux": "^7.0.0",
|
||||
"@types/redux": "^3.6.0",
|
||||
"@types/cors": "^2.8.4",
|
||||
"body-parser": "^1.18.3",
|
||||
"cors": "^2.8.5",
|
||||
"html-webpack-plugin": "^3.2.0",
|
||||
"jest": "^23.6.0",
|
||||
"ts-jest": "^23.10.5",
|
||||
@@ -24,15 +32,19 @@
|
||||
"typescript": "^3.2.4",
|
||||
"webpack": "^4.28.4",
|
||||
"webpack-cli": "^3.2.1",
|
||||
"webpack-dev-server": "^3.1.14"
|
||||
"webpack-dev-server": "^3.1.14",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"nodemon": "^1.18.9"
|
||||
},
|
||||
"dependencies": {
|
||||
"office-ui-fabric-react": "^6.128.0",
|
||||
"@uifabric/experiments": "^6.51.1",
|
||||
"express": "^4.16.4",
|
||||
"immer": "^1.12.1",
|
||||
"office-ui-fabric-react": "^6.128.0",
|
||||
"react": "^16.7.0",
|
||||
"react-dom": "^16.7.0",
|
||||
"redux": "^4.0.1",
|
||||
"react-redux": "^6.0.0",
|
||||
"immer": "^1.12.1"
|
||||
"redux-thunk": "^2.3.0",
|
||||
"redux": "^4.0.1"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user