forked from dangmai/prettier-plugin-apex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.2 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
88
89
90
91
92
{
"name": "prettier-plugin-apex",
"version": "2.0.1",
"description": "Salesforce Apex plugin for Prettier",
"type": "module",
"exports": "./dist/src/index.js",
"browser": "dist/src/standalone.umd.cjs",
"unpkg": "dist/src/standalone.umd.cjs",
"bin": {
"start-apex-server": "./dist/bin/start-apex-server.js",
"stop-apex-server": "./dist/bin/stop-apex-server.js",
"apex-ast-serializer": "./vendor/apex-ast-serializer/bin/apex-ast-serializer",
"apex-ast-serializer-http": "./vendor/apex-ast-serializer/bin/apex-ast-serializer-http"
},
"engines": {
"node": ">= 18.11.0"
},
"files": [
"/dist/bin",
"/dist/src",
"/vendor"
],
"scripts": {
"build": "tsc",
"build:prod": "rimraf dist && tsc --project tsconfig.prod.json && yarn build:standalone && yarn build:site",
"build:standalone": "cross-env BUILD_TARGET=library yarn vite build",
"build:site": "cross-env BUILD_TARGET=site yarn vite build",
"pretest": "yarn run lint",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:standalone": "yarn test -c jest.config.standalone.js",
"start-server": "node --loader ts-node/esm bin/start-apex-server.ts -h 0.0.0.0 -c '*'",
"wait-server": "wait-on --timeout 300000 http://localhost:2117/api/ast/",
"stop-server": "node --loader ts-node/esm bin/stop-apex-server.ts",
"lint": "eslint \"{src,bin,tests_config}/**/*.{js,ts}\"",
"prettier": "prettier --write \"{bin,src,playground,tests_config}/**/*.{js,mjs,ts,tsx,css,html}\" \"./*.{md,mjs,ts}\"",
"prepack": "yarn run build:prod",
"debug-check": "prettier --apex-standalone-parser built-in --apex-standalone-port 2117 --debug-check --plugin=./dist/src/index.js",
"vite:build": "vite build",
"vite:build:watch": "vite build --watch",
"vite:dev": "vite --open http://localhost:5173/"
},
"keywords": [
"apex",
"prettier"
],
"author": "Dang Mai <[email protected]>",
"license": "MIT",
"devDependencies": {
"@monaco-editor/react": "4.6.0",
"@tsconfig/node18": "18.2.2",
"@types/jest": "29.5.7",
"@types/node": "18.16.9",
"@types/react": "18.2.34",
"@types/react-dom": "18.2.14",
"@types/wait-on": "5.3.3",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/parser": "6.9.1",
"@vitejs/plugin-react": "4.1.1",
"clipboard": "2.0.11",
"cross-env": "7.0.3",
"endent": "2.1.0",
"eslint": "8.52.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-prettier-doc": "1.1.0",
"jest": "29.7.0",
"jest-snapshot-serializer-raw": "1.2.0",
"lz-string": "1.5.0",
"prettier": "3.0.3",
"prettier-plugin-organize-imports": "3.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "5.0.5",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.2.2",
"undici": "5.27.2",
"use-debounce": "9.0.4",
"vite": "4.5.0",
"vite-plugin-radar": "0.9.1"
},
"peerDependencies": {
"prettier": "^3.0.0"
},
"dependencies": {
"jest-docblock": "^29.0.0",
"wait-on": "^7.0.0"
}
}