forked from kantord/LibreLingo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.25 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
{
"name": "@librelingo/monorepo",
"private": true,
"scripts": {
"export:withDocs": "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",
"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.14.5",
"@tsconfig/svelte": "2.0.1",
"@types/jest": "26.0.23",
"@types/node": "14.17.3",
"@typescript-eslint/eslint-plugin": "4.27.0",
"@typescript-eslint/parser": "4.27.0",
"eslint": "7.29.0",
"eslint-plugin-cypress": "2.11.3",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-svelte3": "3.2.0",
"sapper": "0.29.1",
"semantic-release": "17.4.4",
"semantic-release-monorepo": "7.0.5",
"source-map-loader": "3.0.0",
"svelte": "3.38.2",
"svelte-check": "2.1.0",
"svelte-preprocess": "4.7.3",
"typescript": "4.3.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"
]
}
}