-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
47 lines (47 loc) · 1.41 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
{
"name": "@pytorch-ignite/code-generator",
"version": "0.4.0",
"scripts": {
"dev": "vite --port 5000",
"build": "vite build",
"serve": "vite preview",
"test": "rm -rf ./dist-tests && jest --color --runInBand -t ${NPM_CONFIG:=''}",
"test:ci": "start-server-and-test --expect 200 serve http://127.0.0.1:5000 test",
"release": "node scripts/release.js",
"fmt": "prettier --write . && bash scripts/run_code_style.sh fmt",
"source_lint": "prettier --check . && bash scripts/run_code_style.sh source_lint",
"dist_lint": "prettier --check . && bash scripts/run_code_style.sh dist_lint"
},
"dependencies": {
"@iconify/iconify": "^3.1.0",
"@octokit/core": "^5.0.0",
"@types/ejs": "^3.1.0",
"@types/file-saver": "^2.0.5",
"@types/jest": "^27.4.0",
"@types/prismjs": "^1.26.0",
"@vitejs/plugin-vue": "^2.1.0",
"@vue/compiler-sfc": "^3.2.30",
"ejs": "^3.1.6",
"execa": "^8.0.1",
"file-saver": "^2.0.5",
"jest": "^27.5.0",
"jszip": "^3.10.1",
"playwright-chromium": "^1.33.0",
"prettier": "^2.5.1",
"prismjs": "^1.26.0",
"prompts": "^2.4.2",
"semver": "^7.3.5",
"start-server-and-test": "^2.0.0",
"uuid": "^9.0.0",
"vite": "^2.7.13",
"vue": "^3.2.30",
"vue-router": "^4.0.12"
},
"prettier": {
"semi": false,
"tabWidth": 2,
"singleQuote": true,
"printWidth": 80,
"trailingComma": "none"
}
}