forked from ionic-team/ionic-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.71 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
{
"name": "ionic-docs",
"private": true,
"version": "1.0.0",
"description": "The official Ionic documentation",
"author": "Ionic Team",
"license": "Apache-2.0",
"scripts": {
"start": "stencil build --dev --serve --watch",
"prestart": "npm run -s build-all",
"build": "stencil build --prerender",
"build.ci": "npm run build-all && stencil build --prerender --ci",
"prebuild": "npm run -s build-all",
"lint": "tslint --config tslint.json --project tsconfig.json",
"build-all": "ts-node -P scripts/tsconfig.json scripts/build-all",
"build-data": "ts-node -P scripts/tsconfig.json scripts/build-data",
"build-pages": "ts-node -P scripts/tsconfig.json scripts/build-pages",
"build-menus": "ts-node -P scripts/tsconfig.json scripts/build-menus",
"watch-pages": "ts-node -P scripts/tsconfig.json scripts/watch-pages",
"heroku-postbuild": "npm run build.ci"
},
"dependencies": {
"@ionic/core": "^4.9.0",
"@ionic/docs": "^4.9.0",
"@sentry/node": "^5.5.0",
"@stencil/router": "^1.0.1",
"compression": "^1.7.4",
"express": "^4.16.4",
"helmet": "^3.16.0",
"ionicons": "^4.6.1",
"simple-git": "^1.126.0",
"throng": "^4.0.0"
},
"devDependencies": {
"@stencil/core": "^1.4.0",
"@types/prismjs": "^1.9.1",
"chokidar": "^3.0.2",
"dotenv": "^8.1.0",
"fast-glob": "^3.0.4",
"front-matter": "^3.0.2",
"fs-extra": "^8.1.0",
"husky": "^1.3.1",
"listr": "^0.14.3",
"marked": "^0.7.0",
"node-fetch": "^2.3.0",
"ora": "^3.1.0",
"prismjs": "~1.16.0",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-ionic-rules": "0.0.21"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}