-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.29 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
{
"name": "silverorange-legaseer",
"version": "1.0.7",
"description": "silverorange legacy file watcher",
"repository": {
"type": "git",
"url": "https://github.com/silverorange/legaseer"
},
"contributors": [
"Michael Gauthier <[email protected]>"
],
"license": "MIT",
"bin": {
"legaseer": "dist/legaseer.js"
},
"engines": {
"node": "^18.13.0"
},
"scripts": {
"start": "ts-node src/legaseer.ts",
"build": "tsc",
"lint": "eslint src/**/*.ts",
"prettier": "prettier --list-different 'src/**/*.ts'",
"prepublish": "tsc"
},
"dependencies": {
"ansi-colors": "^4.1.1",
"chokidar": "^3.5.1",
"fancy-log": "^1.3.3",
"globby": "^11.0.2",
"minimist": "^1.2.5",
"postcss": "^8.2.8",
"postcss-url": "^10.1.3",
"proper-lockfile": "^4.1.2"
},
"devDependencies": {
"@types/fancy-log": "^1.3.1",
"@types/minimist": "^1.2.1",
"@types/node": "^18.15.3",
"@types/proper-lockfile": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"ts-node": "^10.9.1",
"typescript": "^4.2.3"
}
}