-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 2.14 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
{
"name": "formula-evaluator",
"private": true,
"scripts": {
"scratch:create": "sf org create scratch -f config/dev.json -a Expression --set-default",
"scratch:create:communities": "sf org create scratch -f config/dev-communities.json -a Expression --set-default",
"source:push": "sf project deploy start",
"permset:assign": "sf org assign permset -n Expression_Admin",
"start:dev": "npm run scratch:create && npm run source:push && npm run permset:assign",
"start:dev:components": "npm run scratch:create:communities && npm run source:push && npm run permset:assign",
"start:dev:example:conf": "npm run start:dev:components && sfdx force:source:deploy -p unpackaged/examples/expression-conf/main && sf data import tree -p unpackaged/examples/expression-conf/data/data-plan.json",
"package:pre": "node scripts/prepare-for-packaging.mjs",
"package:post": "node scripts/post-packaging.mjs",
"package:create:expression": "npm run package:pre && sf package version create -x -c -p 0HoHu000000TNMAKA4 -w 30 && npm run package:post",
"package:create:expression:components": "npm run package:pre && sf package version create -x -c -p 0HoHu000000TNMFKA4 -w 30 && npm run package:post",
"generate:library:docs": "node scripts/generate-library-docs.mjs",
"docs:generate": "apexdocs markdown",
"tw:build": "npx tailwindcss -i ./expression-components/tw/input.css -o ./expression-components/main/staticresources/tw/css/main.css --minify",
"tw:build:watch": "npx tailwindcss -i ./expression-components/tw/input.css -o ./expression-components/main/staticresources/tw/css/main.css --minify --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cesarParra/formula-evaluator.git"
},
"author": "Cesar Parra",
"license": "MIT",
"bugs": {
"url": "https://github.com/cesarParra/formula-evaluator/issues"
},
"homepage": "https://github.com/cesarParra/formula-evaluator#readme",
"devDependencies": {
"@cparra/apex-reflection": "^2.4.1",
"@cparra/apexdocs": "3.1.0",
"@tailwindcss/forms": "^0.5.6",
"@types/node": "^20.10.2",
"tailwindcss": "^3.3.3",
"typescript": "^5.3.2"
}
}