This repository has been archived by the owner on Oct 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 224
/
package.json
79 lines (79 loc) · 2.12 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
{
"name": "@meetalva/packages",
"private": true,
"version": "0.8.1",
"description": "Create living prototypes with code components",
"scripts": {
"commit": "commit",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "tslint --project . -c tslint.json 'src/**/*.ts'",
"precommit": "lint-staged",
"watch": "lerna run watch --stream",
"analyze:essentials": "alva analyze --in=packages/essentials/package.json --out=packages/essentials/src/analysis.ts --builtins"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meetalva/alva.git"
},
"author": {
"email": "[email protected]",
"name": "Meet Alva Team",
"url": "https://meetalva.io/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/meetalva/alva/issues"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"git add"
]
},
"prettier": {
"printWidth": 100,
"useTabs": true,
"tabWidth": 3,
"singleQuote": true
},
"devDependencies": {
"@commitlint/cli": "7.2.1",
"@commitlint/config-conventional": "7.1.2",
"@commitlint/prompt-cli": "7.1.2",
"@meetalva/analyzer-cli": "1.0.0",
"@meetalva/core": "0.9.2",
"@meetalva/site": "0.8.1",
"@meetalva/tools": "1.0.0",
"@patternplate/cli": "^3.2.6",
"@patternplate/render-styled-components": "2.5.18",
"@types/jest": "22.2.2",
"css-loader": "1.0.0",
"dependency-check": "^3.3.0",
"husky": "0.14.3",
"jest": "^23.6.0",
"jest-dom": "^3.0.0",
"jest-util": "^23.4.0",
"lerna": "^3.6.0",
"lint-staged": "7.0.4",
"monaco-editor-webpack-plugin": "1.4.0",
"prettier": "1.12.0",
"style-loader": "0.21.0",
"ts-jest": "^23.10.5",
"ts-loader": "4.4.1",
"ts-node": "^8.0.3",
"tslint": "5.11.0",
"tslint-config-prettier": "1.15.0",
"typescript": "3.2.2",
"webpack-cli": "3.1.0"
},
"homepage": "https://meetalva.io/",
"workspaces": [
"packages/*"
],
"resolutions": {
"**/acorn": "5.7.3",
"**/source-map-support": "npm:@marionebl/source-map-support",
"**/styled-components": "4.0.3",
"**/typescript": "3.2.2"
}
}