-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
92 lines (92 loc) · 2.93 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
84
85
86
87
88
89
90
91
92
{
"private": true,
"workspaces": {
"packages": [
"packages/*",
"website/*"
]
},
"keywords": [
"aims",
"ovine",
"react",
"typescript",
"admin-template"
],
"license": "Apache-2.0",
"scripts": {
"prepare:dev": "yarn tsc && cd ./website/example && yarn cp:lib && yarn gen:static && yarn start",
"start:demo": "cd ./website/example && yarn start",
"dev:org": "cd ./website/org && yarn start",
"dev:cli": "cd ./packages/cli && yarn dev",
"dev:core": "cd ./packages/core && yarn dev",
"changelog": "lerna-changelog",
"pretty": "prettier --loglevel warn --write --config .prettierrc \"**/*.{md,yml,json,yaml,css}\"",
"eslint": "eslint --cache --fix \"**/*.{js,jsx,ts,tsx}\"",
"lerna": "lerna",
"test": "jest --colors --errorOnDeprecated --expand",
"jest:clear": "jest --clearCache",
"tsc": "lerna run tsc --no-private && lerna run tsc:editor",
"gen:init:env": "yarn workspace @ovine/init gen:env",
"version:prerelease": "yarn lerna version prerelease --no-git-tag-version --no-push",
"version:patch": "yarn lerna version patch",
"publish:stage": "yarn tsc && yarn gen:init:env",
"publish:npm": "yarn publish:stage && yarn lerna publish from-package"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/express": "^4.17.2",
"@types/fs-extra": "^8.0.1",
"@types/inquirer": "^6.5.0",
"@types/jest": "^24.0.23",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.14",
"@types/react": "^16.9.13",
"@types/react-dev-utils": "^9.0.1",
"@types/react-router-dom": "^5.1.3",
"@types/semver": "^6.2.0",
"@types/shelljs": "^0.8.6",
"@types/styled-components": "^5.0.1",
"@types/webpack": "^4.41.0",
"@types/webpack-dev-server": "^3.9.0",
"@types/webpack-merge": "^4.1.5",
"@typescript-eslint/eslint-plugin": "~5.16.0",
"@typescript-eslint/parser": "~5.16.0",
"cross-var": "^1.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"jest-styled-components": "^7.0.0",
"lerna": "^3.20.2",
"lerna-changelog": "^1.0.0",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"styled-components": "^5.0.0",
"ttypescript": "^1.5.10",
"typescript": "~4.5.5",
"typescript-transform-paths": "^1.1.14"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,md}": "yarn pretty",
"*.{js,jsx,ts,tsx}": "yarn eslint"
},
"engines": {
"node": ">=10.9.0"
}
}