forked from edtr-io/edtr-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.81 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
{
"name": "@edtr-io/edtr-io-workspace",
"version": "0.0.0",
"license": "MIT",
"author": "edtr.io Consortium",
"repository": "edtr-io/edtr-io",
"scripts": {
"start": "lerna run --stream start",
"test": "jest",
"test:ssr": "jest --config jest-ssr.config.js",
"prebuild": "yarn --frozen-lockfile",
"build": "lerna run --ignore=@edtr-io/internal__{bundle-size,demo} --concurrency=2 --stream build",
"prebuild-demo": "yarn build",
"build-demo": "lerna run --scope=@edtr-io/internal__demo build",
"deploy-demo": "lerna run --scope=@edtr-io/internal__demo deploy",
"regenerate-api": "lerna run --concurrency=2 --stream regenerate-api",
"format": "npm-run-all -c format:*",
"format:eslint": "yarn _eslint --config .eslint-ci.config.js --fix",
"format:prettier": "yarn _prettier --write",
"lint": "npm-run-all lint:tsc lint:prettier lint:eslint",
"lint:eslint": "yarn _eslint",
"lint:prettier": "yarn _prettier --check",
"lint:tsc": "tsc --noEmit",
"changelog": "ts-node scripts/changelog",
"predeploy": "yarn build",
"deploy": "yarn _publish",
"deploy:from-package": "yarn deploy from-package",
"deploy:prerelease": "yarn lerna version --amend --no-push && yarn deploy:from-package --dist-tag next",
"_eslint": "eslint \"{{packages/*/*,scripts}/{{__fixtures__,__helpers__,__stories__,__tests-ssr__,__tests__,scripts,src}/**/*,*},*}.{js,jsx,ts,tsx}\" --config .eslint-extended-ci.config.js --no-eslintrc",
"_publish": "lerna publish --message \"release %v\"",
"_prettier": "prettier \"{{.circleci,docs,packages/*/*,scripts}/{{__fixtures__,__helpers__,__stories__,__tests-ssr__,__tests__,scripts,src}/**/*,*},*}.{js,jsx,ts,tsx,json,md,yaml,yml}\""
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@microsoft/api-extractor": "^7.0.0",
"@splish-me/changelog": "^0.1.0",
"@types/jest": "^25.0.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-import-order-alphabetical": "^1.0.0",
"eslint-plugin-jsdoc": "^21.0.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-react-hooks": "^2.0.0",
"jest": "^25.0.0",
"lerna": "^3.0.0",
"npm-run-all": "^4.0.0",
"prettier": "^1.0.0",
"rimraf": "^3.0.0",
"ts-node": "^8.0.0",
"tsdx": "^0.12.0",
"tslib": "^1.0.0",
"typescript": "^3.0.0"
},
"private": true,
"workspaces": [
"packages/plugins/*",
"packages/private/*",
"packages/public/*"
]
}