This repository was archived by the owner on Jan 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 4.9 KB
/
Copy pathpackage.json
File metadata and controls
136 lines (136 loc) · 4.9 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "hipo-frontend-ts-boilerplate",
"version": "0.0.0",
"description": "Hipo Frontend TypeScript Boilerplate",
"private": true,
"scripts": {
"build:release": "./node_modules/.bin/webpack --config webpack.release.config.js --progress --colors",
"build:dev": "./node_modules/.bin/webpack --config webpack.dev.config.js --progress --colors",
"build:dev:live": "./node_modules/.bin/webpack-dev-server --config webpack.dev.config.js --progress --colors --watch",
"start": "npm run build:dev:live",
"type-check": "echo \"type-checking...\" && tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"eslint": "./node_modules/.bin/eslint --ext .jsx,.js,.tsx,.ts src/",
"eslint:fix": "./node_modules/.bin/eslint --fix --ext .jsx,.js,.tsx,.ts src/",
"stylelint": "./node_modules/.bin/stylelint \"src/**/*.{css,scss}\"",
"stylelint:fix": "npm run stylelint -- --fix",
"prettify": "./node_modules/.bin/prettier --config ./.prettierrc.js --write \"src/**/*.{ts,tsx}\"",
"lint": "npm run stylelint; npm run eslint",
"test": "./node_modules/.bin/jest",
"test:watch": "npm t -- --watch",
"changelog": "./node_modules/.bin/conventional-changelog --config ./node_modules/hipo-web-conventional-changelog/index.js --context ./changelog-context-variables.json -o CHANGELOG.md -r 0",
"checkPackageUpdates": "npx npm-check-updates"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hipo/hipo-frontend-ts-boilerplate.git"
},
"bugs": {
"url": "https://github.com/Hipo/hipo-frontend-ts-boilerplate/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettify && lint-staged && npm run type-check",
"pre-push": "npm run test"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint"
],
"src/**/*.scss": [
"stylelint"
]
},
"devDependencies": {
"@babel/cli": "7.11.5",
"@babel/core": "7.11.5",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.10.4",
"@babel/plugin-proposal-object-rest-spread": "7.11.0",
"@babel/plugin-proposal-optional-chaining": "7.11.0",
"@babel/plugin-transform-spread": "7.11.0",
"@babel/preset-env": "7.11.5",
"@babel/preset-react": "7.10.4",
"@babel/preset-typescript": "7.10.4",
"@hipo/eslint-config-base": "^3.0.0",
"@hipo/eslint-config-react": "^2.0.0",
"@hipo/stylelint-config-base": "^2.0.0",
"@sentry/webpack-plugin": "1.14.0",
"@svgr/webpack": "5.4.0",
"@types/classnames": "2.2.10",
"@types/enzyme": "3.10.5",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/jest": "26.0.12",
"@types/pluralize": "0.0.29",
"@types/react": "16.9.49",
"@types/react-dom": "16.9.8",
"@types/react-modal": "3.10.6",
"@types/react-redux": "7.1.9",
"@types/react-router-dom": "5.1.5",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"autoprefixer": "9.8.6",
"babel-loader": "8.1.0",
"clean-webpack-plugin": "3.0.0",
"conventional-changelog-cli": "^2.1.0",
"copy-webpack-plugin": "6.1.0",
"css-loader": "4.2.2",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.4",
"enzyme-to-json": "3.5.0",
"eslint": "7.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.0",
"file-loader": "6.1.0",
"fork-ts-checker-webpack-plugin": "5.1.0",
"git-revision-webpack-plugin": "3.0.6",
"hipo-web-conventional-changelog": "github:Hipo/hipo-web-conventional-changelog",
"html-webpack-plugin": "4.4.1",
"husky": "4.2.5",
"jest": "26.4.2",
"lint-staged": "10.2.13",
"mini-css-extract-plugin": "0.11.0",
"node-sass": "^4.14.1",
"postcss-inline-svg": "4.1.0",
"postcss-loader": "3.0.0",
"postcss-normalize": "9.0.0",
"prettier": "2.1.1",
"sass-loader": "10.0.1",
"style-loader": "1.2.1",
"stylelint": "13.7.0",
"stylelint-no-unsupported-browser-features": "4.0.0",
"stylelint-order": "4.1.0",
"stylelint-scss": "3.18.0",
"terser-webpack-plugin": "4.1.0",
"ts-jest": "26.3.0",
"typescript": "4.0.2",
"url-loader": "4.1.0",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "5.1.3",
"webpack-s3-plugin": "1.0.3"
},
"dependencies": {
"@hipo/hipo-exceptions-js": "^1.0.6",
"@hot-loader/react-dom": "16.13.0",
"@sentry/browser": "5.22.3",
"axios": "0.21.2",
"classnames": "2.2.6",
"core-js": "3.6.5",
"pluralize": "8.0.0",
"query-string": "6.13.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-hot-loader": "4.12.21",
"react-modal": "3.11.2",
"react-redux": "7.2.1",
"react-router-dom": "5.2.0",
"redux": "4.0.5",
"redux-saga": "1.1.3",
"regenerator-runtime": "0.13.7"
}
}