forked from ionic-team/ionic-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.48 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
{
"name": "ionic-docs",
"private": true,
"version": "1.0.0",
"description": "The official Ionic documentation",
"author": "Ionic Team",
"license": "MIT",
"scripts": {
"start": "stencil build --dev --serve --watch --es5",
"prestart": "npm run -s build-all",
"build": "stencil build --prerender --dev --es5",
"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"
},
"dependencies": {
"@ionic/core": "^4.1.1",
"@ionic/docs": "^4.1.1",
"@stencil/core": "^0.18.0",
"@stencil/router": "^0.3.3",
"express": "^4.16.4"
},
"devDependencies": {
"@types/prismjs": "^1.9.1",
"chokidar": "^2.1.0",
"fast-glob": "^2.2.6",
"front-matter": "^3.0.1",
"fs-extra": "^7.0.1",
"husky": "^1.3.1",
"jsdom": "^13.2.0",
"listr": "^0.14.3",
"marked": "^0.6.0",
"node-fetch": "^2.3.0",
"ora": "^3.1.0",
"prismjs": "^1.15.0",
"ts-node": "^8.0.2",
"tslint": "^5.14.0",
"tslint-ionic-rules": "0.0.21"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"heroku-run-build-script": true
}