forked from tomoyanakano/clasp-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.45 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.45 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
{
"name": "shopify_ops",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rollup --config",
"deploy:dev": "npm run build && cross-env clasp_config_project=.clasp.json.dev clasp push",
"deploy:prod": "npm run build && cross-env clasp_config_project=.clasp.json.prod clasp push",
"lint": "eslint --fix --ext .ts,.js --ignore-path .gitignore ."
},
"type": "module",
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@google/clasp": "^2.4.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.2",
"@types/google-apps-script": "^1.0.60",
"@types/node": "^20.4.4",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"rollup": "^4.9.2",
"typescript": "^5.0.4"
},
"dependencies": {
"moment": "^2.29.4"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-typescript"
],
"plugins": [
[
"@babel/plugin-transform-runtime",
{
"regenerator": true
}
]
]
}
}