-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.02 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.02 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
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
{
"name": "csh-material-login",
"version": "2.0.1",
"description": "Keycloak theme for Computer Science House",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/ComputerScienceHouse/csh-material-login.git"
},
"author": "Steven Mirabito <smirabito@csh.rit.edu>",
"license": "MIT",
"homepage": "https://github.com/ComputerScienceHouse/csh-material-login#readme",
"bugs": {
"url": "https://github.com/ComputerScienceHouse/csh-material-login/issues"
},
"engines": {
"node": ">=14"
},
"scripts": {
"start": "NODE_ENV=development rewrite-tsconfig && node tools/watch.js",
"build": "NODE_ENV=production rewrite-tsconfig && node tools/build.js && node tools/package.js",
"deploy": "node tools/deploy.js",
"lint": "rewrite-tsconfig && eslint --format codeframe src && tsc --noEmit && stylelint 'src/**/*.{css,sass,scss}'",
"clean": "node tools/clean.js"
},
"dependencies": {
"@types/reactstrap": "^8.5.1",
"csh-material-bootstrap": "^4.5.2",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^3.11.0",
"react-use": "^15.3.4",
"reactstrap": "^8.5.1",
"typescript-plugin-css-modules": "^2.4.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@neutrinojs/eslint": "^9.4.0",
"@neutrinojs/react": "^9.4.0",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"archiver": "^5.0.0",
"autoprefixer": "^9.8.6",
"aws-sdk": "^2.751.0",
"chokidar": "^3.4.2",
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-airbnb-typescript": "^10.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"fs-extra": "^9.0.1",
"globby": "^11.0.1",
"html-webpack-plugin": "^4.4.1",
"husky": "^4.2.5",
"lint-staged": "^10.3.0",
"mime-types": "^2.1.27",
"neutrino": "^9.4.0",
"neutrinojs-typescript": "^1.1.4",
"parallel-webpack": "^2.6.0",
"postcss": "^7.0.32",
"postcss-loader": "^3.0.0",
"prettier": "^2.1.1",
"stylelint": "^13.7.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-sass-guidelines": "^7.1.0",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-subresource-integrity": "^1.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.md": [
"prettier --write"
],
"*.css": [
"prettier --write",
"stylelint --fix"
],
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{ts,tsx}": [
"tsc -p tsconfig.json --noEmit"
]
}
}