-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.64 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
{
"name": "skyrocket",
"version": "0.0.0",
"description": "easier parallelism for web applications",
"main": "index.js",
"author": "Chris Thoburn <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint --ext=js,ts .",
"test:development": "yarn build && lerna run test",
"problems": "tsc -p tsconfig.json --noEmit --pretty false",
"test:node": "yarn build && lerna run test:node",
"test:production": "yarn build && lerna run test:production",
"test:fastboot": "yarn build && lerna run test:fastboot",
"build": "lerna run prepublishOnly"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@skyrocketjs/worker",
"**/@skyrocketjs/schema",
"**/@skyrocketjs/compiler",
"**/@skyrocketjs/service",
"**/@skyrocketjs/ember"
]
},
"engines": {
"node": ">= 12.0.0"
},
"volta": {
"node": "14.3.0",
"yarn": "1.22.4"
},
"husky": {
"hooks": {
"pre-commit": [
"yarn lint --cache"
]
}
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^2.32.0",
"@typescript-eslint/parser": "^2.33.0",
"babel-eslint": "^10.1.0",
"command-line-args": "^5.1.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-ember": "^8.5.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-qunit": "^4.2.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"husky": "^4.2.5",
"lerna": "^3.18.4",
"prettier": "^1.19.1"
},
"resolutions": {
"clean-css": "4.2.3"
}
}