-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.89 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.89 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
{
"name": "code-portfolio-examples",
"description": "Code Portfolio Examples",
"author": "Christian Oellers",
"license": "(c) Codeconut Ltd.",
"version": "0.0.1",
"private": true,
"scripts": {
"lint:css": "npx stylelint 'src/**/*.css'",
"lint:scss": "npx stylelint 'src/**/*.scss' --syntax scss",
"prettier:check": "npx prettier --check \"src/**/*.{ts,js,css,scss,php,sql,xml,csv,json}\"",
"prettier:clean": "npx prettier --write \"src/**/*.{ts,js,css,scss,php,sql,xml,csv,json}\"",
"project:clean": "rm -rf node_modules"
},
"dependencies": {},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@types/jest": "^24.9.1",
"@types/node": "^12.19.5",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.3.2",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^1.1.5",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"extract-loader": "^5.1.0",
"file-loader": "^6.2.0",
"flow-bin": "^0.119.1",
"flow-typed": "^3.2.1",
"htmlhint": "^0.14.2",
"node-sass": "^4.14.1",
"prettier": "^2.1.2",
"prettier-eslint": "^11.0.0",
"sass": "^1.29.0",
"sass-loader": "^10.1.0",
"serve": "^11.3.2",
"stylelint": "^13.8.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.18.0",
"ts-loader": "^8.0.11",
"tslib": "^2.0.1",
"typescript": "^3.9.7",
"webpack": "^5.6.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
}
}