-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.93 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
{
"version": "0.0.2",
"name": "react-webpack-starter",
"license": "MIT",
"description": "A simple, opinionated React Webpack starter. Includes support for TypeScript, component & integration tests using Cypress, and TailwindCSS/Sass",
"keywords": [
"react",
"webpack",
"typescript",
"babel",
"sass",
"hmr",
"starter",
"boilerplate"
],
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/plugin-transform-runtime": "7.15.0",
"@babel/preset-env": "7.15.6",
"@babel/preset-react": "7.14.5",
"@cypress/react": "^5.10.0",
"@cypress/webpack-dev-server": "^1.6.0",
"@types/node": "^16.10.1",
"@types/react": "17.0.24",
"@types/react-dom": "17.0.9",
"@typescript-eslint/eslint-plugin": "4.31.2",
"@typescript-eslint/parser": "4.31.2",
"autoprefixer": "^10.3.6",
"babel-loader": "8.2.2",
"css-loader": "6.3.0",
"cypress": "^8.4.1",
"eslint": "7.32.0",
"eslint-plugin-react": "7.26.0",
"eslint-webpack-plugin": "3.0.1",
"html-webpack-plugin": "5.3.2",
"normalize.css": "^8.0.1",
"postcss": "^8.3.8",
"postcss-loader": "6.1.1",
"postcss-preset-env": "^6.7.0",
"react-hot-loader": "^4.13.0",
"sass": "^1.42.1",
"sass-loader": "^12.1.0",
"style-loader": "3.3.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-webpack-plugin": "^3.0.1",
"ts-loader": "9.2.6",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "4.4.3",
"webpack": "5.54.0",
"webpack-cli": "4.8.0",
"webpack-dev-server": "4.3.0",
"webpack-merge": "5.8.0"
},
"scripts": {
"start": "webpack serve --open --config _webpack/local.config.js",
"build:dev": "webpack --config _webpack/dev.config.js",
"test:components": "cypress open-ct",
"test:e2e": "cypress open"
},
"dependencies": {
"react": "17.0.2",
"react-dom": "17.0.2",
"tailwindcss": "^2.2.15"
}
}