-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.51 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
102
{
"name": "notification-system",
"version": "1.0.0",
"description": "A reusable React.JS Notification System",
"author": "dkress59 <[email protected]>",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"dependencies": {
"nanoid": "3.3.2",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@babel/core": "7.17.8",
"@babel/plugin-syntax-flow": "7.16.7",
"@babel/plugin-transform-react-jsx": "7.17.3",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@babel/runtime": "7.17.8",
"@testing-library/jest-dom": "5.16.3",
"@testing-library/react": "12.1.4",
"@testing-library/react-hooks": "7.0.2",
"@tool-belt/eslint-config": "1.1.2",
"@types/babel__core": "7.1.19",
"@types/babel__plugin-transform-runtime": "7.9.2",
"@types/babel__preset-env": "7.9.2",
"@types/eslint": "8.4.1",
"@types/jest": "27.4.1",
"@types/node": "17.0.23",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@types/testing-library__jest-dom": "5.14.3",
"@typescript-eslint/eslint-plugin": "5.16.0",
"@typescript-eslint/parser": "5.16.0",
"autoprefixer": "10.4.4",
"babel-loader": "8.2.4",
"babel-preset-react-app": "10.0.1",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "10.2.4",
"css-loader": "6.7.1",
"eslint": "8.12.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-react-app": "7.0.0",
"eslint-import-resolver-typescript": "2.7.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jam3": "0.2.3",
"eslint-plugin-jest": "26.1.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-sonarjs": "0.12.0",
"eslint-plugin-sort-imports-es6-autofix": "0.6.0",
"eslint-plugin-testing-library": "5.1.0",
"eslint-plugin-unused-imports": "2.0.0",
"eslint-webpack-plugin": "3.1.1",
"fork-ts-checker-webpack-plugin": "7.2.1",
"html-webpack-plugin": "5.5.0",
"husky": "7.0.4",
"identity-obj-proxy": "3.0.0",
"jest": "27.5.1",
"mini-css-extract-plugin": "2.6.0",
"postcss": "8.4.12",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-import": "14.1.0",
"postcss-loader": "6.2.1",
"postcss-scss": "4.0.3",
"prettier": "2.6.1",
"sass": "1.49.9",
"style-loader": "3.3.1",
"stylelint": "14.6.1",
"stylelint-config-prettier-scss": "0.0.1",
"stylelint-config-recess-order": "3.0.0",
"stylelint-config-standard-scss": "3.0.0",
"stylelint-csstree-validator": "2.0.0",
"stylelint-scss": "4.2.0",
"stylelint-selector-no-empty": "1.0.8",
"tailwindcss": "3.0.23",
"ts-jest": "27.1.4",
"ts-node": "10.7.0",
"typescript": "4.6.3",
"webpack": "5.70.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.7.4"
},
"scripts": {
"start": "webpack-dev-server --port 3000",
"build": "webpack --mode=production --progress",
"check:script": "eslint --fix-dry-run src",
"check:style": "npx stylelint '**/*.scss'",
"fix:script": "eslint --fix src",
"fix:style": "npx stylelint --fix --quiet '**/*.scss'",
"postinstall": "husky install",
"test": "jest --verbose --runInBand",
"test:watch": "jest --watchAll --coverage"
}
}