-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
120 lines (120 loc) · 3.23 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
114
115
116
117
118
119
120
{
"name": "@svc/markdown-notes",
"version": "0.6.0",
"description": "Markdown Notes using local storage",
"main": "src/index.tsx",
"scripts": {
"build:dev": "webpack -p --mode development",
"build:prod": "webpack -p --mode production",
"release": "semantic-release --debug",
"start": "PORT=8082 webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kamthamc/MarkdownNotes.git"
},
"keywords": [
"Javascript",
"Markdown",
"Notes",
"Notes"
],
"author": "Chaitanya Kumar Kamatham",
"license": "MIT",
"bugs": {
"url": "https://github.com/kamthamc/MarkdownNotes/issues"
},
"homepage": "https://github.com/kamthamc/MarkdownNotes#readme",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.12.0",
"@material-ui/core": "^4.8.1",
"@material-ui/icons": "^4.5.1",
"@material-ui/styles": "^4.7.1",
"file-saver": "^2.0.2",
"immer": "^5.1.0",
"marked": "^0.8.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-intl-universal": "^2.2.2",
"react-redux": "^7.1.3",
"react-router": "^5.1.2",
"react-router-dom": "latest",
"redux": "^4.0.5",
"redux-devtools-extension": "latest",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"styled-components": "^4.4.1",
"typeface-roboto": "0.0.75",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/commit-analyzer": "^6.3.3",
"@semantic-release/git": "^7.0.18",
"@semantic-release/github": "^5.5.5",
"@semantic-release/npm": "^5.3.4",
"@semantic-release/release-notes-generator": "^7.3.5",
"@types/marked": "^0.7.2",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^7.1.5",
"@types/react-router-dom": "^5.1.3",
"@types/styled-components": "^4.4.1",
"@types/uuid": "^3.4.6",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.0",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"html-webpack-template": "^6.2.0",
"semantic-release": "^15.14.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"assets": [
"dist/*.{js,css,html}"
]
}
]
],
"ci": true
}
}