forked from CultureHQ/add-to-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.66 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
{
"name": "@culturehq/add-to-calendar",
"version": "1.0.4",
"description": "A small package for adding an event to a calendar.",
"main": "dist/AddToCalendar.js",
"types": "dist/AddToCalendar.d.ts",
"scripts": {
"compile": "tsc --noEmit",
"docs": "webpack --mode production",
"lint": "chq-scripts lint",
"prepublishOnly": "rm -f dist/* && yarn tsc --declaration && cp src/styles.css dist",
"start": "webpack-dev-server --mode development --hot",
"test": "chq-scripts test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CultureHQ/add-to-calendar.git"
},
"author": "Kevin Deisz",
"license": "MIT",
"bugs": {
"url": "https://github.com/CultureHQ/add-to-calendar/issues"
},
"homepage": "https://github.com/CultureHQ/add-to-calendar#readme",
"peerDependencies": {
"react": ">= 16.8",
"react-dom": ">= 16.8"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.10.4",
"@culturehq/scripts": "^6.0.1",
"@testing-library/react": "^10.0.0",
"@types/jest": "^26.0.0",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"style-loader": "^1.0.0",
"typescript": "^3.5.3",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.3",
"webpack-dev-server": "^3.10.1"
},
"resolutions": {
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0"
}
}