forked from ionic-team/starters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.34 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
{
"private": true,
"scripts": {
"src:clean": "rimraf dist",
"src:lint": "tslint --project tsconfig.json",
"src:build": "tsc",
"src:watch": "tsc -w",
"starters:build": "node ./bin/ionic-starters build",
"starters:deploy": "node ./bin/ionic-starters deploy",
"starters:find-redundant": "node ./bin/ionic-starters find-redundant",
"starters:generate-checksum": "node ./bin/ionic-starters generate-checksum",
"starters:test": "node ./bin/ionic-starters test",
"build": "npm run src:build && npm run starters:build"
},
"main": "./dist/index.js",
"dependencies": {
"@ionic/utils-array": "0.0.1",
"aws-sdk": "^2.145.0",
"chalk": "^2.3.0",
"cross-spawn": "^6.0.5",
"lodash": "^4.17.4",
"minimatch": "^3.0.4",
"tar": "^4.4.1"
},
"devDependencies": {
"@ionic/cli-framework": "1.7.0",
"@ionic/utils-fs": "^1.2.0",
"@types/fs-extra": "^5.0.5",
"@types/inquirer": "^6.0.0",
"@types/lodash": "^4.14.81",
"@types/log-update": "^2.0.0",
"@types/minimatch": "^3.0.3",
"@types/minimist": "^1.2.0",
"@types/node": "^10.12.1",
"@types/tar": "^4.0.0",
"husky": "^1.1.0",
"rimraf": "^2.6.2",
"tslint": "^5.9.1",
"tslint-ionic-rules": "0.0.21",
"typescript": "^3.0.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run src:lint"
}
}
}