-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.84 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
73
{
"name": "aiaa-deic-digthread",
"version": "1.0.0",
"description": "Documentation site for the AIAA DEIC Digital Thread Subcommittee",
"type": "module",
"scripts": {
"test": "test",
"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/digthread.git"
},
"keywords": [
"AIAA",
"Aerospace",
"Digital",
"Engineering",
"Digital Thread",
"Industry"
],
"author": "Subcommittee members",
"license": "MIT",
"bugs": {
"url": "https://github.com/aiaa-deic/digthread/issues"
},
"homepage": "https://github.com/aiaa-deic/digthread#readme",
"dependencies": {
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^9.1.0",
"tailwindcss": "^3.3.3",
"vitepress": "^1.0.0-rc.40",
"vue": "^3.3.4"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"autoprefixer": "^10.4.14",
"commitizen": "^4.3.0",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"postcss": "^8.4.27",
"prettier": "^3.0.1"
},
"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"
}
}
}