-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.05 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "react-quiz",
"version": "1.0.0",
"description": "A react quiz app",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development --open --hot --config ./webpack.config.js",
"build": "webpack --mode production --config ./webpack.config.js",
"lint": "npm run lint:code && npm run lint:style",
"lint:code": "eslint src/**/*.{js,ts,tsx} --quiet --no-error-on-unmatched-pattern",
"lint:style": "stylelint src/**/*.scss",
"test": "jest --config=jest.config.js",
"test:watch": "jest --config=jest.config.js --watch",
"test:coverage": "jest --config=jest.config.js --coverage",
"codegen": "graphql-codegen"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmsalazar84/react-quiz.git"
},
"keywords": [
"react",
"typescript",
"javascript",
"jest",
"quiz"
],
"author": {
"name": "jmsalazar",
"email": "jmsalazar84@gmail.com",
"url": "https://github.com/jmsalazar84"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jmsalazar84/react-quiz/issues"
},
"homepage": "https://github.com/rkoziol/react-quiz#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"devDependencies": {
"@graphql-codegen/cli": "^2.2.0",
"@graphql-codegen/typescript": "^2.2.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/graphql": "^14.5.0",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.3.0",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"apollo": "^2.33.6",
"css-loader": "^6.3.0",
"dotenv-webpack": "^7.0.3",
"enzyme": "^3.11.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-css-modules": "^2.11.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.4",
"mini-css-extract-plugin": "^2.4.1",
"prettier": "^2.4.1",
"react-test-renderer": "^17.0.2",
"sass-loader": "^12.1.0",
"source-map-loader": "^3.0.0",
"style-loader": "^3.3.0",
"stylelint": "^13.13.1",
"stylelint-config-sass-guidelines": "^8.0.0",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.57.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.3.1"
},
"dependencies": {
"@apollo/client": "^3.4.16",
"@apollo/react-hooks": "^4.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-react-hooks": "^4.2.0",
"graphql": "^15.6.1",
"react": "^17.0.0",
"react-dom": "^17.0.2",
"react-responsive": "^9.0.0-beta.4",
"react-router-dom": "^5.3.0",
"react-scripts": "^4.0.3",
"sass": "^1.42.1",
"stylelint-scss": "^3.21.0"
}
}