-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 3.1 KB
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": "nlp100-ts",
"version": "0.4.1",
"description": "NLP 100 Exercise 2020 (Rev 2) in TypeScript",
"keywords": [
"nlp100",
"TypeScript"
],
"license": "MIT",
"author": "NEUTRON <neutron0831@gmail.com> (https://github.com/neutron0831)",
"homepage": "https://nlp100-ts.netlify.app",
"config": {
"MAX_OLD_SPACE_SIZE": "--max-old-space-size=6144"
},
"scripts": {
"postinstall": "husky install && chmod +x .husky/*",
"dev": "vite",
"build": "vue-tsc --noEmit && vite build --target esnext",
"preview": "vite preview",
"test": "NODE_OPTIONS=$npm_package_config_MAX_OLD_SPACE_SIZE vitest --silent",
"test:ch": "NODE_OPTIONS=$npm_package_config_MAX_OLD_SPACE_SIZE vitest src/chapters/$ch/test",
"lint": "eslint --ext .js,.ts,.vue --fix --no-error-on-unmatched-pattern src",
"format": "prettier --write --ignore-unknown --no-error-on-unmatched-pattern src",
"commitmsg": "commitlint --config .commitlintrc.js --edit $GIT_PARAMS",
"changelog": "gitmoji-changelog && sed -E 's_"_\"_g; s_`_`_g; s_(\\(|,)#([0-9]+)?_\\1[#\\2](https://github.com/neutron0831/nlp100-ts/issues/\\2)_g; s_\\[([0-9a-z]{7})\\]$_[[\\1](https://github.com/neutron0831/nlp100-ts/commit/\\1)]_g' CHANGELOG.md | sed -E \"4s_## ([0-9]\\.[0-9]\\.[0-9])_## [v\\1](https://github.com/neutron0831/nlp100-ts/compare/$(git describe --tags --abbrev=0)...v\\1)_g\" > CHANGELOG.md"
},
"dependencies": {
"@mdi/font": "7.0.96",
"@vueuse/core": "^9.13.0",
"chart.js": "^4.3.0",
"core-js": "^3.8.3",
"lodash": "^4.17.21",
"papaparse": "^5.4.1",
"path-browserify": "^1.0.1",
"pinia": "^2.0.23",
"rehype-highlight": "^6.0.0",
"rehype-katex": "^6.0.2",
"rehype-stringify": "^9.0.3",
"remark": "^14.0.2",
"remark-math": "^5.1.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"roboto-fontface": "*",
"ts-pattern": "^4.2.1",
"unified": "^10.1.2",
"unist-util-is": "^5.2.1",
"unist-util-map": "^3.1.3",
"vue": "^3.2.13",
"vue-router": "^4.0.0",
"vuetify": "^3.0.0",
"webfontloader": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@commitlint/parse": "^17.4.4",
"@octokit/types": "^9.0.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.9",
"@types/papaparse": "^5.3.7",
"@types/web-bluetooth": "^0.0.16",
"@types/webfontloader": "^1.6.35",
"@types/webpack": "^5.28.0",
"@vitejs/plugin-vue": "^3.0.3",
"@vue/eslint-config-typescript": "^11.0.0",
"commitlint": "^17.4.4",
"cross-env": "^7.0.3",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-vue": "^9.3.0",
"gitmoji-changelog": "^2.3.0",
"gitmojis": "^3.13.4",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"sass": "^1.55.0",
"typescript": "^4.0.0",
"unplugin-auto-import": "^0.15.0",
"unplugin-vue-components": "^0.24.0",
"vite": "^3.1.9",
"vite-plugin-vuetify": "^1.0.0-alpha.12",
"vitest": "^0.29.2",
"vue-tsc": "^1.0.9"
},
"private": true
}