-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
{
"name": "@teleporthq/teleport-react-libraries",
"license": "MIT",
"version": "0.0.1",
"description": "A experimental setup for running the libraries in the playground",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"validate": "ts-node src/scripts/validate.ts",
"dev": "ts-node src/scripts/watcher.ts",
"clean": "rimraf dist",
"build": "npm run clean && tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/teleporthq/teleport-react-libraries.git"
},
"author": "teleportHQ",
"homepage": "https://teleporthq.io/",
"devDependencies": {
"validate-npm-package-name": "^3.0.0",
"@mojotech/json-type-validation": "^3.1.0",
"@types/node": "^14.6.0",
"@types/validate-npm-package-name": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"chokidar": "^3.4.2",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"prettier": "^2.1.1",
"pretty-quick": "^3.0.1",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint"
}
}
}