-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
54 lines (54 loc) · 1.39 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
{
"name": "parcel-plugin-typescript",
"version": "1.0.0",
"description": "Enhanced TypeScript support for Parcel bundler",
"author": "Fathy Boundjadj <[email protected]>",
"license": "MIT",
"repository": "https://github.com/fathyb/parcel-plugin-typescript.git",
"main": "build/index.js",
"typings": "build/index.d.ts",
"files": [
"src",
"build",
"exports"
],
"scripts": {
"build": "tsc",
"lint": "tslint --project .",
"precommit": "run-p build lint"
},
"peerDependencies": {
"parcel-bundler": "^1.9.0",
"typescript": "^2.4.0"
},
"dependencies": {
"@babel/code-frame": "^7.0.0-beta.34",
"body-parser": "^1.18.2",
"chalk": "^2.3.0",
"comment-json": "^1.1.3",
"express": "^4.16.2",
"find-up": "^2.1.0",
"normalize-path": "^2.1.1",
"resolve-from": "^4.0.0",
"tmp": "^0.0.33",
"tslib": "^1.8.1",
"uuid": "^3.1.0"
},
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/comment-json": "^1.1.0",
"@types/express": "^4.11.0",
"@types/find-up": "^2.1.1",
"@types/node": "~7.0.0",
"@types/resolve-from": "^0.0.18",
"@types/tmp": "^0.0.33",
"@types/uuid": "^3.4.3",
"husky": "^0.14.3",
"npm-run-all": "^4.1.2",
"parcel-bundler": "^1.2.0",
"standard-version": "^4.2.0",
"tslint": "^5.8.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.7.2"
}
}