-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.94 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
{
"name": "cards-of-carousal",
"version": "1.0.0",
"description": "Card game application resembling Cards Against Humanity",
"main": "index.js",
"scripts": {
"install-all": "npm i && cd ./frontend && npm i && cd ../backend && npm i",
"dev:frontend": "node check-env.js ./frontend && cd ./frontend && npm start",
"dev:backend": "node check-env.js ./backend && cd ./backend && npm run dev",
"lint:frontend": "cd ./frontend && prettier -c src/**/*.{js,css,md} ; eslint src",
"lint:backend": "cd ./backend && prettier -c app/**/*.{js,css,md} ; eslint app",
"lint": "npm run lint:frontend && npm run lint:backend",
"test:backend": "cd ./backend && npm test",
"test:frontend": "cd ./frontend && npm test -- --watchAll=false",
"test": "npm run test:backend && npm run test:frontend",
"postinstall": "node ./node_modules/husky/lib/installer/bin install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/I3uckwheat/cards-of-carousal.git"
},
"author": "The Odin Project",
"license": "ISC",
"bugs": {
"url": "https://github.com/I3uckwheat/cards-of-carousal/issues"
},
"homepage": "https://github.com/I3uckwheat/cards-of-carousal#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.15.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jest-dom": "^3.6.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.10.1",
"husky": "^4.3.6",
"jest": "26.6.0",
"lint-staged": "^10.5.3",
"prettier": "2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test"
}
},
"lint-staged": {
"*.{js,css}": "prettier -c",
"*.js": "eslint"
},
"dependencies": {
"dotenv": "^8.2.0"
}
}