-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.55 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
103
104
105
106
107
108
109
110
111
112
113
{
"name": "calendar",
"version": "1.0.0",
"description": "Calendar app with typescript",
"homepage": "https://rodrigovive.github.io/calendar-app/",
"scripts": {
"deploy": "gh-pages -d dist",
"test": "jest",
"lint": "eslint \"src/**/*.+(js|jsx|ts|tsx)\"",
"format": "npm run prettier -- --write",
"validate": "npm run lint && npm run test && npm run prettier -- --list-different",
"prettier": "prettier \"src/**/*.+(js|jsx|ts|tsx)\"",
"tsc": "tsc",
"tsc-init": "./node_modules/.bin/tsc -init --lib dom --jsx react --isolatedModules",
"dev": "webpack-dev-server --mode development",
"build": "webpack --mode=production",
"post-build": "cp ./public.index.html ./dist/index.html",
"start": "npm run dev"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.*(js|ts)": [
"eslint"
],
"src/**/*.*(js|jsx|ts|tsx)": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://rodrigovive.github.io/calendar-app.git"
},
"author": "Jhair Rodrigo Viveros Cordova",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-constant-elements": "^7.8.3",
"@babel/plugin-transform-react-inline-elements": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@babel/runtime": "^7.8.4",
"@svgr/webpack": "^5.2.0",
"@testing-library/dom": "^6.15.0",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.5.0",
"@types/react": "^16.9.22",
"@types/react-color": "^3.0.1",
"@types/react-dom": "^16.9.5",
"@types/shortid": "0.0.29",
"@types/yup": "^0.26.32",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-preset-latest": "^6.24.1",
"css-loader": "^3.4.2",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-jest": "^23.8.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"file-loader": "^5.1.0",
"fork-ts-checker-webpack-plugin": "^4.0.4",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"jest-canvas-mock": "^2.2.0",
"lint-staged": "^10.0.7",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "1.19.1",
"resolve-url-loader": "^3.1.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^2.3.5",
"typescript": "^3.8.2",
"url-loader": "^3.0.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"workbox-webpack-plugin": "^5.0.0",
"worker-loader": "^2.0.0"
},
"dependencies": {
"@date-io/moment": "^1.3.13",
"@material-ui/core": "^4.9.5",
"@material-ui/icons": "^4.9.1",
"@material-ui/pickers": "^3.2.10",
"csstype": "^2.6.9",
"moment": "^2.24.0",
"react": "^16.12.0",
"react-color": "^2.18.0",
"react-dom": "^16.12.0",
"shortid": "^2.2.15"
},
"engines": {
"node": ">=10.3.0",
"npm": ">=5.5.0"
}
}