forked from ionic-team/starters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.22 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
{
"private": true,
"scripts": {
"src:clean": "rimraf dist",
"src:lint": "npm run eslint",
"src:lint:fix": "npm run eslint -- --fix",
"eslint": "eslint . --ext .ts",
"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",
"devDependencies": {
"@ionic/cli-framework": "^5.1.3",
"@ionic/prettier-config": "^2.0.0",
"@ionic/utils-array": "^2.1.5",
"@ionic/utils-fs": "^3.1.6",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "9.0.1",
"@types/lodash": "^4.14.183",
"@types/minimatch": "^3.0.5",
"@types/minimist": "^1.2.2",
"@types/node": "^18.7.6",
"@types/tar": "^6.1.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"aws-sdk": "^2.1197.0",
"colorette": "^2.0.19",
"cross-spawn": "^7.0.3",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^3.1.0",
"lodash": "^4.17.21",
"minimatch": "^5.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"tar": "^6.1.11",
"typescript": "^4.7",
"typescript-eslint-language-service": "^5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run src:lint"
}
},
"prettier": "@ionic/prettier-config",
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint",
"prettier"
],
"rules": {
"prettier/prettier": "error"
},
"ignorePatterns": [
"node_modules",
"**/*.d.ts",
"angular",
"vue",
"react",
"integrations",
"ionic-angular",
"ionic1",
"dist",
"build",
"vue-vite",
"react-vite",
"angular-standalone"
]
}
}