-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "pw-ionic-app-scripts",
"version": "1.0.0",
"description": "Scripts for Ionic Projects",
"author": "pw",
"license": "MIT",
"files": [
"bin/",
"config/",
"dist/",
"lab",
"LICENSE",
"README.md"
],
"bin": {
"ionic-app-scripts": "./bin/ionic-app-scripts.js"
},
"scripts": {
"build": "npm run clean && tsc && npm run sass",
"build-and-test": "jest",
"changelog": "./node_modules/.bin/conventional-changelog -p angular -i CHANGELOG.md -s",
"clean": "rimraf ./dist",
"github-release": "node ./scripts/create-github-release.js",
"lint": "tslint -c ./tslint.json --project ./tsconfig.json --type-check -t stylish",
"nightly": "npm run build && node ./scripts/publish-nightly.js",
"sass": "node-sass ./src/dev-client/sass/ion-dev.scss --output ./bin/ --output-style compressed",
"sass-watch": "npm run sass && node-sass ./src/dev-client/sass/ion-dev.scss --watch --output ./bin/ --output-style compressed",
"test": "jest",
"watch": "npm run clean && tsc --watch & npm run sass-watch",
"preinstall": "npx npm-force-resolutions || echo 1"
},
"main": "dist/index.js",
"dependencies": {
"@angular-devkit/build-optimizer": "0.0.35",
"autoprefixer": "7.2.6",
"chalk": "2.4.0",
"chokidar": "2.0.4",
"clean-css": "4.1.11",
"cross-spawn": "5.1.0",
"dotenv-webpack": "1.5.7",
"express": "4.16.3",
"fs-extra": "4.0.2",
"glob": "7.1.2",
"json-loader": "0.5.7",
"node-sass": "4.10.0",
"os-name": "2.0.1",
"postcss": "6.0.21",
"proxy-middleware": "0.15.0",
"reflect-metadata": "0.1.10",
"rollup": "0.50.0",
"rollup-plugin-commonjs": "8.2.6",
"rollup-plugin-node-resolve": "3.0.0",
"source-map": "0.6.1",
"tiny-lr": "1.1.1",
"tslint": "5.8.0",
"tslint-eslint-rules": "4.1.1",
"uglify-es": "3.2.2",
"webpack": "3.12.0",
"ws": "3.3.2",
"xml2js": "0.4.19"
},
"devDependencies": {
"@angular/animations": "5.0.3",
"@angular/common": "5.0.3",
"@angular/compiler": "5.0.3",
"@angular/compiler-cli": "5.0.3",
"@angular/core": "5.0.3",
"@angular/forms": "5.0.3",
"@angular/http": "5.0.3",
"@angular/platform-browser": "5.0.3",
"@angular/platform-browser-dynamic": "5.0.3",
"@angular/platform-server": "5.0.3",
"@types/chokidar": "1.7.5",
"@types/clean-css": "3.4.29",
"@types/express": "4.11.1",
"@types/fs-extra": "4.0.8",
"@types/glob": "5.0.35",
"@types/jest": "21.1.5",
"@types/mock-fs": "3.6.30",
"@types/node": "8.10.9",
"@types/node-sass": "3.10.32",
"@types/rewire": "2.5.27",
"@types/webpack": "3.8.11",
"@types/ws": "3.2.0",
"conventional-changelog-cli": "1.3.22",
"github": "0.2.4",
"ionic-cz-conventional-changelog": "1.0.0",
"jest": "21.2.1",
"mock-fs": "4.4.2",
"npm-force-resolutions": "0.0.10",
"rewire": "2.5.2",
"rimraf": "2.6.1",
"rxjs": "5.5.10",
"sw-toolbox": "3.6.0",
"tslint-ionic-rules": "0.0.8",
"typescript": "2.4.2",
"zone.js": "0.8.26"
},
"resolutions": {
"@types/express-serve-static-core": "4.11.1",
"@types/minimatch": "3.0.3",
"@types/serve-static": "1.13.1",
"@types/http-errors": "1.6.1",
"@types/mime": "2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pw-repo/pw-ionic-app-scripts.git"
},
"bugs": {
"url": "https://github.com/pw-repo/pw-ionic-app-scripts/issues"
},
"config": {
"commitizen": {
"path": "node_modules/ionic-cz-conventional-changelog"
}
},
"typings": "dist/index.d.ts",
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts)$": "<rootDir>/preprocessor.js"
},
"testRegex": "/src/.*\\.spec\\.(ts|js)$",
"coverageDirectory": "coverage"
}
}