forked from teleporthq/teleport-code-generators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·58 lines (58 loc) · 1.83 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
55
56
57
58
{
"name": "@teleporthq/teleport-code-generators",
"version": "0.3.0",
"description": "Code generators and UIDL definition library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "tsc -w",
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"lint": "tslint -p ./",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "npm run test -- --coverage --no-cache",
"upload:coverage": "codecov",
"prepare": "npm run build",
"create-react-next": "ts-node --project tsconfig.json ./examples/project-exporters/react-next/index.ts",
"create-react-basic": "ts-node --project tsconfig.json ./examples/project-exporters/react-basic/index.ts",
"create-vue-basic": "ts-node --project tsconfig.json ./examples/project-exporters/vue-basic/index.ts",
"create-vue-nuxt": "ts-node --project tsconfig.json ./examples/project-exporters/vue-nuxt/index.ts"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/teleporthq/teleport-code-generators.git"
},
"author": "teleportHQ",
"license": "MIT",
"homepage": "https://teleporthq.io/",
"devDependencies": {
"@types/jest": "^24.0.6",
"@types/cheerio": "^0.22.10",
"@types/node": "^11.9.4",
"codecov": "^3.2.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"pretty-quick": "^1.10.0",
"rimraf": "^2.6.3",
"ts-node": "^8.0.2",
"ts-jest": "^24.0.0",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3"
},
"dependencies": {
"@babel/generator": "^7.3.3",
"@babel/types": "^7.3.3",
"ajv": "^6.9.1",
"cheerio": "^1.0.0-rc.2",
"jss": "^9.8.7",
"jss-preset-default": "^10.0.0-alpha.7",
"prettier": "^1.16.4"
}
}