-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
83 lines (83 loc) · 2.45 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "rax-app",
"private": true,
"workspaces": [
"packages/*"
],
"description": "A universal framework based on Rax.js",
"author": "Rax Team",
"license": "MIT",
"scripts": {
"setup": "rm -rf node_modules && yarn install && npm run build",
"setup:skip": "rm -rf node_modules && PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true yarn install && npm run build",
"watch": "ts-node ./scripts/watch.ts",
"build": "ts-node ./scripts/build.ts",
"version": "ts-node ./scripts/tag-version.ts",
"version:check": "ts-node ./scripts/version-check.ts",
"publish": "npm run build && ts-node ./scripts/publish-package.ts",
"publish:beta": "npm run build && ts-node ./scripts/publish-beta-package.ts",
"sync": "ts-node ./scripts/sync.ts",
"rollback": "ts-node ./scripts/rollback.ts",
"owner": "ts-node ./scripts/owner.ts",
"dependency:check": "ts-node ./scripts/dependency-check.ts",
"clean": "rimraf packages/*/lib",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx ./",
"lint:fix": "npm run lint -- --fix",
"lint:diff": "ts-node ./scripts/lint-diff.ts",
"test": "jest --forceExit",
"test:watch": "jest --watch",
"coverage": "codecov",
"release": "ts-node ./scripts/release"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint:diff"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@iceworks/spec": "^1.0.0",
"@types/eslint": "^7.28.0",
"@types/jest": "^25.2.1",
"@types/puppeteer": "^5.4.2",
"axios": "^0.21.1",
"cheerio": "1.0.0-rc.3",
"codecov": "^3.6.5",
"dependency-check": "^4.1.0",
"eslint": "^6.8.0",
"esm": "^3.2.25",
"execa": "^4.0.0",
"fs-extra": "^8.1.0",
"get-port": "^5.1.1",
"glob": "^7.1.6",
"husky": "^4.1.0",
"jest": "^25.4.0",
"lerna": "^3.16.4",
"mark-twain": "^2.0.3",
"npm-run-all": "^4.1.5",
"pify": "^4.0.1",
"puppeteer": "^5.5.0",
"rax": "^1.1.0",
"rax-document": "^0.1.0",
"rax-image": "^2.0.0",
"rax-link": "^1.0.1",
"rax-text": "^2.0.0",
"rax-view": "^2.0.0",
"rax-waterfall": "^1.1.2",
"rimraf": "^3.0.0",
"semver": "^7.3.2",
"ts-jest": "^25.4.0",
"ts-node": "^8.6.1",
"typescript": "^4.0.0",
"chokidar": "^3.5.3"
},
"resolutions": {
"colors": "1.4.0",
"@types/react": "^17.0.0"
},
"dependencies": {
"core-js": "^3.6.4",
"path-to-regexp": "6.1.0"
}
}