forked from kantord/LibreLingo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.36 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
{
"name": "@librelingo/monorepo",
"private": true,
"scripts": {
"export:production": "yarn web installAllExternalCourses && yarn exportAllCourses && yarn web export && yarn docs:build && mv ./apps/web/__sapper__/ .",
"export": "yarn web export && mv ./apps/web/__sapper__/ .",
"deploy": "echo 'librelingo.app' > __sapper__/export/CNAME && gh-pages -d __sapper__/export",
"commit": "git-cz",
"test": "jest",
"test:ci": "yarn web test:ci",
"web": "yarn workspace @librelingo/web",
"types": "yarn workspaces run types",
"stylefix": "yarn web run prettierfix && yarn web run eslintfix",
"stylecheck": "yarn web run prettiercheck && yarn web run eslintcheck",
"exportAllCourses": "./scripts/exportAllYamlCourses.sh",
"exportCourse": "./scripts/exportYamlCourse.sh",
"docs": "poetry run mkdocs serve",
"docs:build": "poetry run mkdocs build --site-dir ./apps/web/__sapper__/export/docs/"
},
"workspaces": {
"packages": [
"apps/*"
],
"nohoist": [
"**/bulma",
"**/bulma/**",
"**/@openfonts/**",
"**/svelte/**",
"svelte/**",
"svelte",
"**/svelte",
"sapper/**",
"sapper",
"**/sapper",
"knapsack-pro-cypress"
]
},
"devDependencies": {
"@babel/preset-typescript": "7.16.5",
"@tsconfig/svelte": "3.0.0",
"@types/jest": "27.0.3",
"@types/node": "16.11.17",
"@typescript-eslint/eslint-plugin": "5.8.0",
"@typescript-eslint/parser": "5.8.0",
"eslint": "8.5.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-jest": "25.3.0",
"eslint-plugin-svelte3": "3.2.1",
"sapper": "0.29.3",
"semantic-release": "18.0.1",
"semantic-release-monorepo": "7.0.5",
"source-map-loader": "3.0.0",
"svelte": "3.44.3",
"svelte-check": "2.2.11",
"svelte-preprocess": "4.10.1",
"typescript": "4.5.4"
},
"nyc": {
"report-dir": "cypress-coverage",
"extension": [
".js",
".svelte"
],
"all": true,
"cache": false
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
},
"release": {
"extends": "semantic-release-monorepo",
"branches": [
"main"
]
}
}