-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 2.05 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
{
"name": "archimedes",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"packages/arch",
"packages/utils",
"packages/components",
"examples/*"
],
"scripts": {
"clean": "rimraf ./packages/*/dist packages/**/*.tsbuildinfo",
"compile": "tsc --build tsconfig.project.json",
"build": "npm run clean && npm run build:packages && npm run build:components",
"build:components": "cd packages/components && npm run build",
"build:packages": "parcel build packages/arch packages/utils",
"watch": "parcel watch packages/arch packages/utils",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci",
"format": "prettier --write --ignore-path .gitignore .",
"release": "multi-semantic-release --sequential-init --ignore-private-packages=true",
"release:check": "multi-semantic-release --dry-run --sequential-init --ignore-private-packages=true",
"postinstall": "update-ts-references"
},
"dependencies": {
"@parcel/transformer-typescript-tsc": "2.0.1"
},
"devDependencies": {
"@commitlint/cli": "13.1.0",
"@commitlint/config-conventional": "13.1.0",
"@parcel/packager-ts": "2.0.1",
"@parcel/transformer-typescript-types": "2.0.1",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.1",
"@semantic-release/git": "10.0.1",
"@types/jest": "27.0.1",
"es-babel-jest": "1.0.0",
"isomorphic-fetch": "3.0.0",
"jest": "27.4.5",
"multi-semantic-release": "2.11.0",
"parcel": "2.0.1",
"prettier": "2.3.2",
"pretty-quick": "3.1.1",
"rimraf": "3.0.2",
"simple-git-hooks": "2.6.1",
"ts-jest": "27.1.2",
"ts-mockito": "2.6.1",
"typescript": "4.4.2",
"update-ts-references": "2.4.1"
},
"simple-git-hooks": {
"commit-msg": "npx --no-install commitlint --edit",
"pre-commit": "npx pretty-quick --staged",
"pre-push": "npm run test:ci"
},
"engines": {
"node": "17.3.0"
},
"volta": {
"node": "17.3.0",
"npm": "8.3.0"
}
}