This repository has been archived by the owner on Nov 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
102 lines (102 loc) · 2.8 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
{
"name": "loona-monorepo",
"private": true,
"dependencies": {
"lerna": "3.13.1"
},
"scripts": {
"build": "lerna run build --ignore example-react-basic",
"clean": "lerna clean",
"format": "prettier --write **/{src,tests}/**/*.{js,jsx,ts,tsx,graphql}",
"test": "lerna run test",
"test:coverage": "lerna run test:coverage",
"coverage": "codecov",
"size": "bundlesize",
"set-version": "node ./scripts/version.js",
"release": "./scripts/release.sh",
"build:angular": "yarn workspace @loona/angular run build",
"build:core": "yarn workspace @loona/core run build",
"build:react": "yarn workspace @loona/react run build",
"build:schematics": "yarn workspace @loona/schematics run build",
"example": "node ./scripts/example.js",
"build:examples": "yarn example build-all",
"precommit": "lint-staged"
},
"workspaces": {
"packages": [
"packages/core",
"packages/angular",
"packages/react",
"packages/schematics",
"examples/react/basic"
]
},
"devDependencies": {
"@angular-devkit/build-angular": "0.13.8",
"@angular/animations": "7.2.12",
"@angular/cdk": "7.3.7",
"@angular/cli": "7.3.8",
"@angular/common": "7.2.12",
"@angular/compiler": "7.2.12",
"@angular/compiler-cli": "7.2.12",
"@angular/core": "7.2.12",
"@angular/forms": "7.2.12",
"@angular/http": "7.2.12",
"@angular/language-service": "7.2.12",
"@angular/material": "7.3.7",
"@angular/platform-browser": "7.2.12",
"@angular/platform-browser-dynamic": "7.2.12",
"@angular/router": "7.2.12",
"@types/graphql": "14.2.0",
"@types/node": "10.14.4",
"apollo-angular": "1.5.0",
"apollo-angular-link-http": "1.5.0",
"apollo-cache-inmemory": "1.5.1",
"apollo-client": "2.5.1",
"apollo-link": "1.2.11",
"bundlesize": "0.17.1",
"codecov": "3.3.0",
"core-js": "2.6.5",
"graphql": "14.2.1",
"graphql-tag": "2.10.1",
"husky": "1.3.1",
"lint-staged": "8.1.5",
"listr": "0.14.3",
"prettier": "1.16.4",
"rxjs": "6.4.0",
"semver": "5.7.0",
"shelljs": "0.8.3",
"ts-node": "8.0.3",
"typescript": "3.2.4",
"zone.js": "0.9.0"
},
"lint-staged": {
"**/{src,tests}/**/*.{ts,tsx,graphql}": [
"prettier --write",
"git add"
]
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"trailingComma": "all"
},
"bundlesize": [
{
"path": "./packages/core/build/bundles/loona.core.umd.min.js",
"maxSize": "4 kB"
},
{
"path": "./packages/angular/build/bundles/loona.angular.umd.min.js",
"maxSize": "3 kB"
},
{
"path": "./packages/react/build/loona.react.umd.min.js",
"maxSize": "2 kB"
}
],
"resolutions": {
"jest": "23.6.0",
"webpack-dev-server": "3.1.9"
}
}