-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
43 lines (43 loc) · 1.36 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
{
"private": true,
"workspaces": [
"packages/*",
"integration-tests"
],
"repository": "git@github.com:Crypto-Punkers/resolver-engine.git",
"author": "Crypto Punkers <hello@punkers.co>",
"scripts": {
"build": "tsc -b tsproject.json",
"build:core": "wsrun -p core --stages build",
"build:fs": "wsrun -p fs --stages build",
"build:imports": "wsrun -p imports --stages build",
"build:imports-fs": "wsrun -p imports-fs --stages build",
"watch": "tsc -b --watch tsproject.json",
"clean": "wsrun --exclude-missing clean",
"prettier": "prettier --config .prettierrc.yaml --write --list-different './**/*.{ts,tsx,json,md}'",
"test": "run-s build test:execute",
"test:execute": "wsrun --parallel --collect-logs test",
"lint": "wsrun --parallel --collect-logs lint"
},
"devDependencies": {
"@types/debug": "^4.1.1",
"@types/jest": "^24.0.6",
"@types/node": "^12.0.0",
"@types/request": "^2.47.0",
"jest": "<25.0.0",
"lerna": "^3.10.7",
"memfs": "^2.15.0",
"nock": "^13.0.11",
"npm-run-all": "^4.1.5",
"prettier": "1.18.2",
"rimraf": "^3.0.0",
"ts-jest": "^24.0.0",
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.2.4",
"wsrun": "^5.0.0",
"@types/is-url": "^1.2.28"
},
"name": "resolver-engine"
}