-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.06 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.06 KB
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
{
"name": "quick-note",
"version": "1.3.0",
"description": "Very simple chrome extension to fast one note",
"main": "index.js",
"repository": "https://github.com/gabrielogregorio/quick-note.git",
"author": "Gabriel Gregório <gabriel.gregorio.1@outlook.com>",
"license": "MIT",
"scripts": {
"build": "yarn __prepare-build && tsc && yarn __finish-build",
"__prepare-build":"node prepareBuild.js",
"__finish-build":"node buildExtension.js",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only --ignore-watch node_modules --no-notify src/index.ts"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/jest": "^28.1.8",
"@types/node": "^20.8.6",
"archiver": "^6.0.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.1",
"jest": "^29.0.1",
"lint-staged": "^13.0.4",
"prettier": "^2.6.2",
"ts-jest": "^29.0.1",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.1",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.6.4"
}
}