-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.57 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
{
"name": "recalendar",
"version": "0.1.0",
"description": "",
"author": "Devin Mitchell (http://github.com/demitchell14)",
"license": "MIT",
"contributors": [
"Devin Mitchell (http://github.com/demitchell14)"
],
"repository": {
"type": "git",
"url": "https://github.com/demitchell14/recalendar.git"
},
"bugs": {
"url": "https://github.com/demitchell14/recalendar/issues"
},
"homepage": "https://github.com/demitchell14/recalendar",
"keywords": [
"react",
"reactjs",
"calendar"
],
"main": "index.js",
"types": "types/src/types.d.ts",
"scripts": {
"test": "npm run lint",
"build:demo": "npm run remove:demo && webpack --config ./webpack.config.js",
"remove:demo": "del /s /q \"types\" && cd ./docs && del /s /q \"index.html\" && del /s /q \"js\" && del /s /q \"javascripts\" && del /s /q \"images\"",
"patch": "npm version patch",
"minor": "npm version minor",
"major": "npm version major",
"watch": "webpack --watch --config ./webpack.config.dev.js",
"prettier": "prettier --config ./prettier.config.js --write src/**/*.{tsx,ts,scss}",
"test:jest": "echo \"Error: no test specified\" && exit 1",
"lint": "./node_modules/.bin/tslint --config tslint.json --format stylish --project . --fix"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/node": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-react-jsx": "^7.7.4",
"@babel/plugin-transform-typescript": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@types/classnames": "^2.2.9",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"file-loader": "^5.0.2",
"fork-ts-checker-webpack-plugin": "^3.1.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.1.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"sass-lint": "^1.13.1",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.1",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"tslint-react": "^4.1.0",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-livereload-plugin": "^2.2.0"
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"dependencies": {
"classnames": "^2.2.6"
}
}