-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.02 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.02 KB
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
{
"name": "fika-cli",
"version": "0.4.36",
"license": "LGPL-3.0",
"description": "",
"author": {
"name": "Wonmo Jung",
"email": "wonmo.jung@kkiri.app",
"url": "https://fikadev.com"
},
"repository": {
"type": "git",
"url": "https://github.com/fika-dev/fika-cli.git"
},
"homepage": "https://fikadev.com",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"bin": {
"fika": "dist/src/index.js"
},
"main": "src/index.ts",
"dependencies": {
"axios": "^0.27.2",
"chalk": "^4.1.2",
"commander": "^9.2.0",
"dotenv": "^16.0.1",
"fp-ts": "^2.12.3",
"immer": "^9.0.15",
"inversify": "^6.0.1",
"open": "^8.4.0",
"promptly": "^3.2.0",
"reflect-metadata": "^0.1.13",
"ts-morph": "^14.0.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/plugin-proposal-decorators": "^7.17.9",
"@babel/preset-env": "^7.17.10",
"@babel/preset-typescript": "^7.16.7",
"@types/chalk": "^2.2.0",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.25",
"@types/promptly": "^3.0.2",
"@types/reflect-metadata": "^0.1.0",
"@types/valid-url": "^1.0.3",
"babel-jest": "^28.0.3",
"jest": "^27.0.6",
"prettier": "^2.7.1",
"ts-jest": "^27.0.6",
"ts-node": "^10.7.0",
"tsc-alias": "^1.6.7",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.6.4"
},
"scripts": {
"test": "FIKA_ENV=test jest --config=./jest.config.js --runInBand",
"env-windows": "set FIKA_ENV=test",
"test-windows": "jest --config=./jest.config.js --runInBand test/domain/git/**/*.test.ts",
"exec:index": "FIKA_ENV=test ts-node -r tsconfig-paths/register ./src/index.ts",
"exec": "FIKA_ENV=development ts-node -r tsconfig-paths/register",
"build": "FIKA_ENV=production tsc && tsc-alias && rm -rf dist/test",
"prepublishOnly": "npm run build",
"format:check": "prettier --check \"**/*.{ts,json,yaml,yml,js,md}\"",
"format": "prettier --write \"**/*.{ts,json,yaml,yml,js,md}\""
}
}