-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.08 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
{
"name": "calc",
"version": "0.0.0",
"description": "",
"author": "Gerald <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"prepare": "husky install",
"dev": "gulp dev",
"clean": "gulp clean",
"build:js": "gulp build",
"prebuild": "run-s ci clean",
"build": "cross-env NODE_ENV=production run-s build:js",
"ci": "run-s lint",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ext .ts,.svelte ."
},
"dependencies": {
"@babel/runtime": "^7.18.6",
"core-js": "^3.23.4"
},
"devDependencies": {
"@gera2ld/plaid": "~2.5.6-alpha.1",
"@gera2ld/plaid-common-svelte": "~2.5.6-alpha.1",
"@gera2ld/plaid-common-ts": "~2.5.1",
"@gera2ld/plaid-rollup": "~2.5.0",
"del": "^6.1.1",
"fancy-log": "^2.0.0",
"gulp": "^4.0.2",
"husky": "^8.0.1",
"rollup-plugin-browsersync": "^1.3.3",
"rollup-plugin-svelte": "^7.1.0",
"svelte": "^3.49.0",
"svelte-preprocess": "^4.10.7"
}
}