-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "ted",
"version": "0.0.1",
"description": "Text editor by and for Tiddo",
"main": "out/index.js",
"scripts": {
"build": "tsc",
"watch": "npm run build -- --watch",
"prettier": "prettier --write src/**/*.ts"
},
"author": "Tiddo Langerak <tiddolangerak@gmail.com> (https://github.com/TiddoLangerak/)",
"license": "MIT",
"devDependencies": {
"@types/ansi-escapes": "^4.0.0",
"@types/ansi-styles": "^3.2.1",
"@types/copy-paste": "^1.1.30",
"@types/mkdirp": "^0.5.2",
"@types/node": "^12.6.8",
"@types/uuid": "^3.4.5",
"flow-typed": "^2.1.2",
"husky": "^3.0.1",
"lint-staged": "^9.2.0",
"typescript": "^3.5.3"
},
"dependencies": {
"ansi-escapes": "^1.1.0",
"ansi-styles": "^2.1.0",
"copy-paste": "^1.1.3",
"keypress": "^0.2.1",
"mkdirp": "^0.5.6",
"prettier": "^1.18.2",
"uuid": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run prettier",
"git add"
]
}
}