-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.07 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
{
"name": "@juitnow/vue-ts-checker",
"version": "1.0.0",
"description": "Simple TypeScript checker for Vue single file components",
"main": "index.js",
"scripts": {
"build": "npm run compile && npm run lint",
"compile": "tsc",
"lint": "eslint --ext .js --ext .ts src",
"test": "echo \"Error: no test specified\" && exit 1",
"updates": "check-updates && rm -rf node_modules package-lock.json && npm install",
"watch": "nodemon -w src -e ts,js -x 'npm run build'"
},
"author": "Pier Fumagalli <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/generator": "^7.14.2",
"@babel/types": "^7.14.2",
"@vue/compiler-sfc": "^3.0.11",
"source-map": "=0.6.1"
},
"devDependencies": {
"@types/babel__generator": "^7.6.2",
"@types/estree": "0.0.47",
"@types/node": "<15.0.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-deprecation": "^1.2.1",
"typescript": "^4.2.4"
}
}