-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
144 lines (144 loc) · 4.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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "paper",
"displayName": "Paper",
"description": "Take code notes",
"publisher": "raathigeshan",
"version": "0.11.0",
"engines": {
"vscode": "^1.50.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/Raathigesh/paper"
},
"icon": "icons/icon.png",
"galleryBanner": {
"color": "#ffff",
"theme": "light"
},
"activationEvents": [
"*"
],
"main": "./out/extension/extension",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "paper-view",
"title": "Paper",
"icon": "icons/icon.png"
}
]
},
"views": {
"paper-view": [
{
"type": "webview",
"id": "paper",
"name": "Paper"
}
]
}
},
"scripts": {
"vscode:prepublish": "yarn run build",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./src/extension --project ./tsconfig.json",
"postinstall": "node ./node_modules/vscode/bin/install",
"ui": "webpack-dev-server --env.development --config ./webpack.config.js",
"build-ui": "webpack --env.production --config ./webpack.config.js",
"build": "rimraf out && yarn compile && yarn build-ui",
"package-ext": "vsce package --yarn",
"publish-ext": "vsce publish --yarn",
"pretty": "prettier --write \"src/**/*.{ts,tsx}\"",
"test": "jest",
"ship": "yarn version && git push origin --tag"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-syntax-optional-chaining": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.7.2",
"@chakra-ui/react": "^1.6.5",
"@devtools-ds/dom-inspector": "^1.1.2",
"@emotion/core": "^10.0.22",
"@emotion/react": "11",
"@emotion/styled": "11",
"@tiptap/extension-link": "^2.0.0-beta.19",
"@tiptap/react": "^2.0.0-beta.55",
"@tiptap/starter-kit": "^2.0.0-beta.89",
"@types/babel-traverse": "^6.25.5",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^24.0.21",
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"@types/react-resizable": "^1.7.2",
"@types/react-resize-detector": "^4.2.0",
"@types/react-router-dom": "^4.3.3",
"all-contributors-cli": "^6.17.0",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.0",
"concurrently": "^5.2.0",
"copy-to-clipboard": "^3.3.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"emotion-theming": "^10.0.19",
"file-loader": "^3.0.1",
"framer-motion": "4",
"html-webpack-plugin": "^3.2.0",
"html-webpack-template": "^6.2.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-feather": "^2.0.9",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^2.3.5",
"typescript": "^4.1.3",
"url-loader": "^3.0.0",
"vscode": "^1.1.28",
"vscode-test": "^1.4.0",
"wait-on": "^5.1.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"directory-tree": "^2.2.9",
"express": "^4.17.1",
"get-port": "^5.1.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/out/"
],
"moduleNameMapper": {
"^common(.*)$": "<rootDir>/src/common$1",
"^entities(.*)$": "<rootDir>/src/entities$1",
"^indexer(.*)$": "<rootDir>/src/indexer$1"
}
}
}