-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 967 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
{
"name": "react-grok-2022",
"version": "1.4.0",
"description": "This tool can help you understand the basic concepts of `React` and solve the 'don't know where to start' problem.",
"main": "index.js",
"scripts": {
"preinstall": "node check-env.js",
"postinstall": "cd client && npm i && cd ../server && npm i",
"test": "cd client && npm test",
"test-dev": "cd client && npm run test-dev",
"test-only": "cd client && npm run test-only",
"start-server": "cd server && npm start",
"db-up": "npx sequelize-cli db:create; npx sequelize-cli db:migrate; npx sequelize-cli db:seed:all",
"db-down": "npx sequelize-cli db:migrate:undo:all; npx sequelize-cli db:seed:undo:all; npx sequelize-cli db:drop"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.3.4",
"chalk": "^4.1.2",
"ky": "^0.33.2",
"ky-universal": "^0.11.0",
"websocket": "^1.0.34",
"ws": "^8.13.0"
}
}