-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.74 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
{
"name": "focus-timer",
"version": "0.1.0",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --config config/webpack.prod.js",
"start": "webpack-dev-server --config config/webpack.dev.js",
"lint": "tsc --noEmit && eslint ./src/ --ext .js,.jsx,.ts,.tsx",
"test": "jest --config config/jest.config.js",
"test:watch": "npm run test -- --watch --maxWorkers=1",
"prettify": "prettier --write \"./**/*.{js,jsx,ts,tsx,json}\""
},
"keywords": [
"Calm Focus",
"Timer",
"Focus",
"Pomodoro",
"Work"
],
"author": "Michael Adlfinger",
"license": "MIT",
"homepage": "https://github.com/mic-web/react-typescript-hot-reload-starter",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@testing-library/dom": "^7.23.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^10.4.9",
"@testing-library/user-event": "^12.1.3",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.157",
"@types/node": "^13.13.5",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^2.32.0",
"@typescript-eslint/parser": "^2.32.0",
"autoprefixer": "^9.7.6",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.2",
"css-loader": "^3.5.3",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-compat": "^3.5.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.10.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"source-map-loader": "^0.2.4",
"style-loader": "^1.2.1",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2",
"workbox-webpack-plugin": "^5.1.3"
},
"dependencies": {
"@material-ui/core": "^4.9.14",
"@material-ui/icons": "^4.9.1",
"@material-ui/types": "^5.1.0",
"clsx": "^1.1.0",
"lodash": "^4.17.19",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-normalize": "^8.0.7"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && npm run build"
}
}
}