-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.23 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
{
"name": "single-spa-aurelia",
"version": "0.0.0",
"description": "single-spa helpers for Aurelia framework",
"main": "dist/umd/single-spa-aurelia.js",
"module": "dist/es2015/single-spa-aurelia.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/single-spa/single-spa-aurelia.git"
},
"license": "MIT",
"scripts": {
"prebuild": "rm -rf dist",
"build": "rollup -c rollup.config.js",
"format": "prettier './**/*' --write",
"lint": "eslint .",
"// - INTEGRATION INSTALLS": "Install packages for integration apps",
"install:integration:blog": "yarn --cwd integration/blog install",
"install:integration:portal": "yarn --cwd integration/portal install",
"install:integration": "concurrently yarn:install:integration:*",
"// - INTEGRATION BUILDS": "Build apps that are required for E2E testing #requires yarn install:integration",
"build:integration:blog": "yarn --cwd integration/blog build",
"build:integration": "concurrently yarn:build:integration:*",
"// - APPS": "Serve apps that are required for E2E testing #requires yarn build:integration",
"start:integration:blog": "serve integration/blog/dist -l 4200 --cors",
"start:integration:portal": "serve integration/portal -s -l 8080",
"start:integration": "concurrently yarn:start:integration:*",
"// - E2E": "E2E testing",
"cy:open": "cypress open --config integrationFolder=cypress/integration",
"cy:run": "cypress run --config integrationFolder=cypress/integration",
"cy:run:chrome": "yarn cy:run --browser chrome",
"cy:run:chromium": "yarn cy:run --browser chromium",
"// - CI": "CI testing #requires yarn start:integration",
"test:ci": "jest --runInBand",
"test:ci:integration": "yarn start-test start:integration 8080 cy:run"
},
"devDependencies": {
"@aurelia/webpack-loader": "dev",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@rollup/plugin-node-resolve": "^7.1.3",
"@types/jest": "^25.2.2",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"aurelia": "dev",
"concurrently": "^5.2.0",
"cpy-cli": "^3.1.1",
"cypress": "^4.7.0",
"eslint": "^7.0.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"rollup": "^2.9.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"serve": "^11.3.2",
"single-spa": "^5.5.1",
"start-server-and-test": "^1.11.0",
"ts-jest": "^26.0.0",
"ts-loader": "^7.0.5",
"tslib": "^1.11.2",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"prettier": {
"semi": true,
"singleQuote": true,
"arrowParens": "avoid",
"endOfLine": "lf",
"printWidth": 100,
"trailingComma": "all",
"bracketSpacing": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts,html,scss,md,yml}": [
"prettier --write",
"git add"
]
}
}