-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.2 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.2 KB
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
{
"name": "react-frontend-template",
"version": "0.0.1",
"description": "React + tailwindcss + webpack",
"main": "src/entry.tsx",
"browserslist": "> 0.5%, last 2 versions, not dead",
"repository": {
"url": "https://github.com/subtato/react-frontend-template",
"type": "git"
},
"scripts": {
"dev": "set NODE_ENV=development && webpack serve -c ./webpack/development.ts",
"start": "set NODE_ENV=production && webpack -c ./webpack/production.ts",
"cypress": "npx cypress run",
"cypress:chrome": "npx cypress run -b chrome",
"cypress:edge": "npx cypress run -b edge",
"cypress:opera": "npx cypress run -b opera",
"cypress:safari": "npx cypress run -b safari",
"prepare": "husky install",
"wsl:cypress": "./scripts/prepare/env.sh"
},
"author": "Bill Ewing <bill@nubs.io>",
"license": "MIT",
"devDependencies": {
"@cypress/code-coverage": "^3.10.0",
"@cypress/webpack-preprocessor": "^5.12.0",
"@types/node": "^18.0.1",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"autoprefixer": "^10.4.7",
"css-loader": "^6.7.1",
"cypress": "^10.3.0",
"eslint": "^8.19.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.30.1",
"fork-ts-checker-webpack-plugin": "^7.2.11",
"handlebars": "^4.7.7",
"handlebars-loader": "^1.7.2",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"jest": "^28.1.2",
"lint-staged": "^13.0.3",
"node-fetch": "^3.2.6",
"nyc": "^15.1.0",
"postcss": "^8.4.14",
"postcss-import": "^14.1.0",
"postcss-loader": "^7.0.0",
"postcss-preset-env": "^7.7.2",
"prettier": "2.7.1",
"selenium-webdriver": "^4.3.0",
"style-loader": "^3.3.1",
"tailwindcss": "^3.1.4",
"ts-loader": "^9.3.1",
"ts-node": "^10.8.2",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown ."
}
}