-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.86 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
{
"name": "anime-suupu",
"version": "0.9.3",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development webpack serve --env dev --hot --host 0.0.0.0 --port 8010",
"start:ci": "NODE_ENV=ci webpack serve --env ci --port 8011",
"build": "NODE_ENV=production webpack --config webpack.config.babel.ts --env production",
"lint": "tsc && eslint 'src/**/*' -c .eslintrc && stylelint 'src/**/*.{sass,scss,css}' && prettier --check 'src/**/*'",
"lint:fix": "eslint 'src/**/*' -c .eslintrc --fix && stylelint 'src/**/*.{sass,scss,css}' --fix && prettier --write 'src/**/*'",
"test": "jest",
"test:watch": "jest --watchAll",
"test:ci": "npm run test && npm run test:integration:ci:run",
"cypress:open": "cypress open",
"test:integration": "cypress run --config-file cypress/dev.config.json",
"test:integration:headless": "cypress run --headless --config-file cypress/dev.config.json",
"test:integration:ci": "cypress run --headless --config-file cypress/ci.config.json",
"test:integration:ci:run": "start-server-and-test start:ci http://localhost:8011 test:integration:ci",
"stats:prod": "webpack --config webpack.config.babel.ts --env production --progress --profile --json > prod.stats.json",
"stats:dev": "webpack --config webpack.config.babel.ts --env dev --progress --profile --json > dev.stats.json",
"pre-commit": "npx lint-staged && npm run test",
"commit-msg": "commitlint --color --edit"
},
"lint-staged": {
"src/**/*": [
"npm run lint:fix"
]
},
"keywords": [],
"author": "Sergio Rodrigo Royo",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@babel/preset-typescript": "^7.16.0",
"@babel/register": "^7.16.0",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@lhci/cli": "^0.8.2",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/webpack-bundle-analyzer": "^4.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.1",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"cypress": "^9.4.1",
"eslint": "^8.7.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest-dom": "^4.0.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^5.0.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"lint-staged": "^12.1.2",
"mini-css-extract-plugin": "^2.5.3",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.2.0",
"prettier": "^2.5.1",
"sass": "^1.48.0",
"sass-loader": "^12.4.0",
"start-server-and-test": "^1.14.0",
"style-loader": "^3.3.1",
"stylelint": "^14.3.0",
"stylelint-config-sass-guidelines": "^9.0.0",
"typescript": "^4.5.3",
"webpack": "^5.68.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.1"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"axios": "^0.25.0",
"msw": "^0.36.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hot-loader": "^4.13.0",
"regenerator-runtime": "^0.13.9",
"webpack-merge": "^5.8.0"
}
}