-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 1.13 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
{
"name": "petographicsweb",
"version": "1.0.0",
"author": "Beastrick",
"private": false,
"license": "MIT",
"scripts": {
"postinstall": "npm run install:client && npm run install:server",
"install:client": "cd client && npm install",
"install:server": "cd server && npm install",
"start:client": "cd client && npm start",
"start:server": "cd server && npm start",
"start": "concurrently --kill-others-on-fail \"npm run start:server\" \"npm run start:client\"",
"build": "build.bat",
"pretty": "prettier --write \"./**/*.{js,jsx,json}\"",
"test:client": "cd client && npm test -- --watchAll=false",
"test:server": "cd server && npm test",
"test": "npm run test:server && npm run test:client"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"concurrently": "^7.5.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.10",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}