-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.86 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "solv-cli",
"description": "hot-challenge-solving application for any coding challenge services",
"version": "1.5.1",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "ttsc --project ./tsconfig.build.json",
"dev": "cross-env TS_NODE_COMPILER=ttypescript node -r ts-node/register ./src/index.ts",
"watch": "cross-env TS_NODE_COMPILER=ttypescript node -r ts-node/register --watch ./src/index.ts",
"semantic-release": "semantic-release",
"lint": "eslint \"src/**/*.ts\"",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"codegen": "graphql-codegen --config codegen.ts"
},
"bin": {
"solv": "./bin/solv.cjs"
},
"files": [
"dist",
"yarn.lock",
"bin",
"package.json"
],
"devDependencies": {
"@graphql-codegen/cli": "^2.16.4",
"@graphql-codegen/client-preset": "^1.2.6",
"@graphql-codegen/typescript": "^2.8.7",
"@graphql-codegen/typescript-operations": "^2.5.12",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.6",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.1.1",
"@types/listr": "^0.14.4",
"@types/lodash.chunk": "^4.2.7",
"@types/node": "^18.6.4",
"@types/node-fetch": "^2.6.2",
"@types/prompts": "^2.0.14",
"@types/replace-ext": "^2.0.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"cross-env": "^7.0.3",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.1.2",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"ttypescript": "^1.5.15",
"typescript": "^4.8.3"
},
"dependencies": {
"@urql/core": "^3.1.1",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"commander": "^9.4.1",
"esbuild": "^0.15.9",
"fs-extra": "^10.1.0",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"html-entities": "^2.3.3",
"listr": "^0.14.3",
"lodash.chunk": "^4.2.0",
"moment": "^2.29.4",
"node-fetch": "^2.6.7",
"node-html-parser": "^6.1.0",
"prompts": "^2.4.2",
"replace-ext": "^2.0.0",
"string-strip-html": "8.3.0",
"typia": "^3.4.20",
"uuid": "^9.0.0",
"vm2": "^3.9.11",
"yaml": "^2.1.2"
}
}