-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
48 lines (48 loc) · 1.35 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
{
"name": "@pytorch-ignite/code-generator",
"version": "0.2.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "jest --color --runInBand",
"test:ci": "start-server-and-test serve 5000 test",
"release": "node scripts/release.js",
"fmt": "prettier --write . && bash scripts/run_code_style.sh fmt",
"lint": "prettier --check . && bash scripts/run_code_style.sh lint",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"devDependencies": {
"@iconify/iconify": "^2.2.1",
"@octokit/core": "^3.6.0",
"@types/ejs": "^3.1.0",
"@types/file-saver": "^2.0.5",
"@types/jest": "^27.5.0",
"@types/prismjs": "^1.26.0",
"@vitejs/plugin-vue": "^2.3.1",
"@vue/compiler-sfc": "^3.2.33",
"conventional-changelog-cli": "^2.2.2",
"ejs": "^3.1.7",
"execa": "^6.1.0",
"file-saver": "^2.0.5",
"jest": "^27.5.1",
"jszip": "^3.9.1",
"playwright-chromium": "^1.21.1",
"prettier": "^2.6.2",
"prismjs": "^1.28.0",
"prompts": "^2.4.2",
"semver": "^7.3.7",
"start-server-and-test": "^1.14.0",
"uuid": "^8.3.2",
"vite": "^2.9.7",
"vue": "^3.2.33",
"vue-router": "^4.0.15"
},
"prettier": {
"semi": false,
"tabWidth": 2,
"singleQuote": true,
"printWidth": 80,
"trailingComma": "none"
}
}