forked from kantord/LibreLingo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.98 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "TODO",
"description": "TODO",
"version": "0.0.1",
"scripts": {
"commit": "git-cz",
"dev": "sapper dev --no-hot",
"build": "sapper build",
"export": "sapper export",
"deploy": "echo 'librelingo.app' > __sapper__/export/CNAME && gh-pages -d __sapper__/export",
"start": "node __sapper__/build",
"cy:run": "cypress run",
"cy:open": "cypress open",
"percypress": "KNAPSACK_PRO_TEST_FILE_PATTERN=\"cypress/integration/**/*.{feature,features}\" percy exec -- $(npm bin)/knapsack-pro-cypress",
"test": "run-p --race dev percypress",
"eslintfix": "eslint src cypress --fix",
"prettierfix": "yarn prettierfix:src && yarn prettierfix:cypress && yarn prettierfix:svelte",
"prettierfix:src": "prettier --write --plugin-search-dir=. ./src/**/*.js",
"prettierfix:svelte": "prettier --write --plugin-search-dir=. ./src/**/*.svelte",
"prettierfix:cypress": "prettier --write --plugin-search-dir=. ./src/**/*.svelte",
"stylefix": "yarn prettierfix && yarn eslintfix",
"jest": "jest src",
"fetchPhotos": "./scripts/fetchPhotos.sh",
"fetchAudios": "./scripts/fetchAudios.sh",
"downloadCourseData": "heroku run -a librelingo-course-editor python manage.py dumpdata course --indent=2 > ./dumps/courseData.json",
"loadCourseDataLocally": "yarn downloadCourseData && rm -f db.sqlite3 && python manage.py migrate && python manage.py loaddata ./dumps/courseData.json",
"exportCourse": "yarn loadCourseDataLocally && pipenv run python manage.py exportcourse",
"docs": "mkdocs serve"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.28",
"@fortawesome/free-brands-svg-icons": "5.13.0",
"@fortawesome/free-solid-svg-icons": "5.13.0",
"@openfonts/josefin-sans_all": "1.44.0",
"bulma": "0.8.2",
"bulma-pageloader": "0.3.0",
"bulma-tooltip": "3.0.2",
"compression": "1.7.4",
"dayjs": "1.8.26",
"github-fork-ribbon-css": "0.2.3",
"hotkeys-js": "3.7.6",
"howler": "2.1.3",
"js-levenshtein": "1.1.6",
"lodash.shuffle": "4.2.0",
"p-memoize": "4.0.0",
"polka": "next",
"pouchdb": "7.2.1",
"rehype-format": "3.0.1",
"rehype-stringify": "7.0.0",
"remark": "12.0.0",
"remark-parse": "8.0.2",
"remark-rehype": "6.0.0",
"sirv": "0.4.2",
"sortablejs": "1.10.2",
"svelte-i18n": "3.0.3"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/preset-env": "7.9.6",
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@knapsack-pro/cypress": "2.0.0",
"@percy/cypress": "2.3.1",
"babel-jest": "25.5.1",
"babel-plugin-istanbul": "6.0.0",
"copy-webpack-plugin": "5.1.1",
"css-loader": "3.5.3",
"cypress": "4.4.1",
"cypress-cucumber-preprocessor": "2.3.1",
"cz-conventional-changelog": "3.1.0",
"eslint": "6.8.0",
"eslint-plugin-cypress": "2.10.3",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-svelte3": "2.7.3",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "6.0.0",
"gh-pages": "2.2.0",
"husky": "4.2.5",
"istanbul-lib-coverage": "3.0.0",
"jest": "25.5.4",
"mini-css-extract-plugin": "0.9.0",
"node-sass": "4.14.0",
"npm-run-all": "4.1.5",
"nyc": "15.0.1",
"prettier": "1.19.1",
"prettier-plugin-svelte": "0.7.0",
"raw-loader": "4.0.1",
"sapper": "0.27.12",
"sass-loader": "8.0.2",
"style-loader": "1.2.1",
"svelte": "3.21.0",
"svelte-loader": "2.13.6",
"svelte-preprocess-sass": "0.2.0",
"webpack": "4.43.0",
"webpack-bundle-analyzer": "3.7.0",
"webpack-cli": "3.3.11"
},
"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
}
}