-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
81 lines (81 loc) · 2.24 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
{
"name": "@dittowords/cli",
"version": "4.5.2",
"description": "Command Line Interface for Ditto (dittowords.com).",
"license": "MIT",
"main": "bin/index.js",
"scripts": {
"prepublishOnly": "ENV=production etsc && sentry-cli sourcemaps inject ./bin && npx sentry-cli sourcemaps upload ./bin --release=\"$(cat package.json | jq -r '.version')\"",
"prepare": "husky install",
"start": "tsc --noEmit --excludeFiles './**/*.test.ts' && etsc && node bin/ditto.js",
"sync": "tsc --noEmit --excludeFiles './**/*.test.ts' && etsc && node bin/ditto.js pull",
"dev": "tsc --noEmit --excludeFiles './**/*.test.ts' && etsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dittowords/cli.git"
},
"bugs": {
"url": "https://github.com/dittowords/cli/issues"
},
"author": "Ditto Tech Inc.",
"keywords": [
"ditto",
"dittowords",
"copy",
"microcopy",
"product",
"cli",
"api"
],
"types": "bin/ditto.d.ts",
"bin": {
"ditto-cli": "bin/ditto.js"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.7.0",
"@sentry/cli": "^2.20.5",
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^26.0.9",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.0.0",
"babel-jest": "^29.3.1",
"dotenv": "^16.3.1",
"esbuild": "^0.19.2",
"esbuild-node-tsc": "^2.0.5",
"husky": "^7.0.4",
"jest": "^29.3.1",
"lint-staged": "^11.2.4",
"prettier": "2.4.1",
"rewire": "^6.0.0",
"source-map": "^0.7.3",
"tempy": "^0.6.0",
"ts-node": "^10.9.2",
"typescript": "^4.7.4"
},
"dependencies": {
"@babel/core": "^7.11.4",
"@babel/parser": "^7.21.4",
"@babel/traverse": "^7.21.4",
"@babel/types": "^7.21.4",
"@sentry/node": "^7.64.0",
"@types/babel-traverse": "^6.25.7",
"axios": "^1.6.0",
"boxen": "^5.1.2",
"chalk": "^4.1.0",
"commander": "^6.1.0",
"enquirer": "^2.3.6",
"faker": "^5.1.0",
"form-data": "^4.0.0",
"glob": "^9.3.4",
"js-yaml": "^4.1.0",
"memfs": "^4.7.7",
"ora": "^5.0.0",
"v8-compile-cache": "^2.1.1"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,css,json}": "prettier --write"
}
}