-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
63 lines (63 loc) · 1.67 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
{
"name": "masscode-io",
"version": "0.1.0",
"description": "Source code of masscode.io",
"author": {
"name": "Anton Reshetov",
"url": "https://github.com/antonreshetov"
},
"repository": "https://github.com/massCodeIO/masscode.io",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "vitepress dev docs",
"dev:ui-collection": "run-p watch:ui-collection dev",
"watch:ui-collection": "ts-node docs/scripts/generate-ui-collection.ts",
"generate:assets": "ts-node docs/scripts/generate-assets.ts",
"build": "vitepress build docs",
"build:assets": "npm run generate:assets && npm run build",
"serve": "vitepress serve docs --port 3000",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,vue,md}": [
"eslint --fix"
],
"*.md": [
"prettier --write"
]
},
"dependencies": {
"axios": "^0.27.2",
"codemirror": "^5.65.7",
"element-plus": "^2.2.14",
"vue-gtag": "^2.0.1"
},
"devDependencies": {
"@antfu/eslint-config": "^0.26.1",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/codemirror": "^5.60.5",
"@types/fs-extra": "^9.0.13",
"chokidar": "^3.5.3",
"dotenv": "^16.0.1",
"eslint": "^8.22.0",
"fs-extra": "^10.1.0",
"gray-matter": "^4.0.3",
"handlebars": "^4.7.7",
"husky": "^7.0.4",
"lint-staged": "^12.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"sass": "^1.54.4",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"vitepress": "1.0.0-alpha.5",
"vue": "^3.2.37"
},
"volta": {
"node": "16.16.0"
}
}