forked from HSF/phoenix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.55 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"packages/phoenix-ng/projects/*"
],
"scripts": {
"start": "yarn workspace phoenix-ng start",
"start:ssl": "yarn workspace phoenix-ng start:ssl",
"test:coverage": "lerna run test:coverage",
"release": "lerna publish patch --create-release github",
"release:graduate": "lerna publish --create-release github --conventional-graduate",
"release:major": "lerna publish major --create-release github",
"release:minor": "lerna publish minor --create-release github",
"release:pre": "lerna publish prerelease --conventional-prerelease",
"version": "yarn workspace phoenix-event-display docs && git add .",
"deploy:web": "yarn workspace phoenix-ng deploy:web",
"lint": "lerna run eslint && lerna run prettier:check",
"lint:fix": "lerna run eslint:fix && lerna run prettier:write",
"docs:coverage": "yarn workspace phoenix-event-display docs:coverage"
},
"dependencies": {
"three": "^0.133.1"
},
"devDependencies": {
"@types/jasmine": "^3.10.1",
"@types/node": "^16.11.4",
"@types/three": "^0.133.1",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jasmine-core": "^3.10.1",
"karma": "^6.3.5",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "^4.0.1",
"lerna": "^4.0.0",
"prettier": "^2.4.1",
"typescript": "~4.3.2"
}
}