-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 2.09 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
{
"name": "squiz-react-todo",
"version": "0.1.0",
"description": "",
"scripts": {
"build": "webpack --progress --config webpack/webpack.prod.js",
"serve": "webpack serve --open --progress --config webpack/webpack.dev.js",
"test": "jest --verbose",
"test:clear": "jest --clearCache"
},
"keywords": [],
"author": "Squiz",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/node": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/faker": "^5.5.9",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.176",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.19.1",
"css-loader": "^6.5.1",
"eslint": "^8.2.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-webpack-plugin": "^3.1.0",
"glob": "^7.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^5.5.0",
"import-glob-loader": "^1.1.0",
"jest": "^27.3.1",
"mini-css-extract-plugin": "^2.4.4",
"postcss-loader": "^6.2.0",
"prettier": "^2.4.1",
"sass": "^1.43.4",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.1",
"stylelint": "^14.0.1",
"stylelint-config-standard": "^23.0.0",
"stylelint-scss": "^4.0.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"webpack": "^5.63.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
},
"dependencies": {
"@material-ui/icons": "^4.11.2",
"@testing-library/react": "^12.1.2",
"autoprefixer": "^10.4.0",
"faker": "^5.5.3",
"lodash": "^4.17.21",
"modern-normalize": "^1.1.0",
"postcss-scss": "^4.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"recoil": "^0.5.2",
"typescript": "^4.4.4"
}
}