-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.81 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
{
"name": "aiaa-deic-devsecops",
"version": "1.0.0",
"description": "Documentation site for the AIAA DEIC DevSecOps Subcommittee",
"type": "module",
"scripts": {
"dev": "vitepress dev docs",
"build": "vitepress build docs",
"preview": "npm run build && npx live-server ./docs/.vitepress/dist",
"lint": "eslint . --fix --ext .js,.ts && npx prettier . --write",
"commit": "cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aiaa-deic/devsecops.git"
},
"keywords": [
"AIAA",
"Aerospace",
"Digital",
"Engineering",
"DevSecOps",
"Industry"
],
"author": "Subcommittee members",
"license": "MIT",
"bugs": {
"url": "https://github.com/aiaa-deic/devsecops/issues"
},
"homepage": "https://github.com/aiaa-deic/devsecops#readme",
"dependencies": {
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^9.5.0",
"tailwindcss": "^3.3.3",
"vitepress": "^1.0.0-rc.45",
"vue": "^3.4.18"
},
"devDependencies": {
"@commitlint/cli": "^19.1.0",
"@commitlint/config-conventional": "^19.1.0",
"autoprefixer": "^10.4.14",
"commitizen": "^4.3.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"postcss": "^8.4.35",
"prettier": "^3.2.5"
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {},
"postcss-flexbugs-fixes": {},
"postcss-preset-env": {
"autoprefixer": {
"flexbox": "no-2009"
},
"features": {
"custom-properties": false
},
"stage": 3
}
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}