-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 2.01 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
{
"name": "adios",
"version": "1.3",
"description": "Adios: One-stop solution for Google Ads image assets management",
"main": "build/index.js",
"license": "Apache-2.0",
"keywords": [],
"scripts": {
"clean": "rimraf build dist",
"lint": "npm run license && eslint --fix --no-error-on-unmatched-pattern src/ test/",
"bundle": "rollup --no-treeshake -c rollup.config.mjs",
"build": "npm run clean && npm run bundle",
"build-ui": "npm run build --prefix src/ui",
"license": "license-check-and-add add -f license-config.json",
"test": "jest test/ --passWithNoTests --detectOpenHandles",
"test-ui": "npm run test --prefix src/ui",
"deploy": "npm run lint && npm run test && npm run build && ncp appsscript.json dist/appsscript.json && ncp .clasp-dev.json .clasp.json && npm run build-ui && npm run deploy-ui && clasp push -f",
"deploy-no-ui": "npm run lint && npm run test && npm run build && ncp appsscript.json dist/appsscript.json && ncp .clasp-dev.json .clasp.json && clasp push -f",
"deploy-ui": "node deploy-ui.mjs",
"deploy:prod": "npm run lint && npm run test && npm run build && ncp appsscript.json dist/appsscript.json && ncp .clasp-prod.json .clasp.json && npm run build-ui && npm run deploy-ui && clasp push",
"serve-ui": "(cd src/ui && ng serve)",
"postinstall": "(cd src/ui && npm install)"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"@google/clasp": "^2.4.2",
"@types/google-apps-script": "^1.0.64",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"gts": "^3.1.1",
"jest": "^29.5.0",
"license-check-and-add": "^4.0.5",
"ncp": "^2.0.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"rollup": "^3.25.3",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-license": "^3.0.1",
"rollup-plugin-typescript2": "^0.35.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.5"
}
}