-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 2.15 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
{
"name": "@superfaceai/station",
"version": "0.0.0",
"description": "Superface Station utility",
"repository": "[email protected]:superfaceai/station.git",
"author": "Superface Team",
"scripts": {
"tools:test": "jest -c jest.tools.config.js",
"tools:lint": "eslint ./",
"tools:lint:fix": "yarn tools:lint --fix",
"tools:format": "prettier -c ./",
"tools:format:fix": "prettier --write ./",
"prepush": "yarn tools:lint:fix && yarn tools:format:fix",
"test": "dotenv -e .env.example -- jest",
"test:record": "SUPERFACE_LIVE_API='*' dotenv -e .env -e .env.example -- jest",
"check": "superface check",
"lint": "superface lint",
"structure": "ts-node ./src/station_structure.ts",
"publish_to_registry": "ts-node ./src/publish.ts",
"hosts:block": "ts-node ./src/hosts.ts block",
"hosts:allow": "ts-node ./src/hosts.ts allow",
"compile": "superface compile",
"compile:clear": "rimraf ./grid/**/*.ast.json",
"create:profile": "superface create:profile --station",
"create:provider": "superface create:provider --station",
"create:map": "superface create:map --station",
"create:mock-map": "superface create:mock-map --station",
"create:mock-map-test": "superface create:mock-map-test --station",
"create:test": "superface create:test --station"
},
"devDependencies": {
"@superfaceai/ast": "^1.3.0",
"@superfaceai/cli": "^3.0.0",
"@superfaceai/one-sdk": "^2.4.1",
"@superfaceai/parser": "^2.1.0",
"@superfaceai/testing": "^5.0.0",
"@types/glob": "^7.1.4",
"@types/jest": "^27.0.1",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-simple-import-sort": "^8.0.0",
"glob": "^7.1.7",
"jest": "27.1.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "27.0.5",
"ts-node": "^10.2.1",
"typescript": "4.3.4"
},
"dependencies": {}
}