forked from Seunghyum/TDD-BDD-case-study
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.46 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
{
"name": "bdd-case-study",
"version": "1.0.0",
"license": "MIT",
"homepage": "https://github.com/Seunghyum/TDD-BDD-case-study",
"scripts": {
"dev": "webpack serve --open --config ./build/webpack.config.dev.js",
"lint": "tslint .",
"lint:fix": "tslint . --fix",
"format": "pretty-quick --staged --ignore-path=.prettierignore",
"build": "webpack --config ./build/webpack.config.prod.js",
"test": "jest --config=jest.config.js --findRelatedTests ./src",
"test:watch": "jest --config=jest.config.js --watch",
"test:cover": "jest --coverage",
"test:make-badges": "yarn test:cover && istanbul-badges-readme",
"prepare": "husky install",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"predeploy": "yarn run build",
"deploy": "gh-pages -d dist",
"cypress:open": "cypress open"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-query": "^3.12.0",
"styled-components": "^5.2.1",
"styled-normalize": "^8.0.7",
"styled-reset": "^4.3.4"
},
"devDependencies": {
"@babel/preset-env": "^7.13.8",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.1.0",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"babel-jest": "^26.6.3",
"clean-webpack-plugin": "^3.0.0",
"coveralls": "^3.1.0",
"css-loader": "^5.1.0",
"cypress": "^6.6.0",
"eslint": "^7.2.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"file-loader": "^6.2.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^5.2.0",
"husky": "^5.1.2",
"istanbul-badges-readme": "^1.2.0",
"jest": "^26.6.3",
"jest-svg-transformer": "^1.0.0",
"lint-staged": "^10.5.4",
"mini-css-extract-plugin": "^1.3.9",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"sass-loader": "^11.0.1",
"ts-jest": "^26.5.2",
"ts-loader": "^8.0.17",
"tslint": "^6.1.3",
"typescript": "^4.2.2",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
}
}