-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 965 Bytes
/
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
{
"name": "calcite-components-https-testing",
"version": "1.0.0",
"main": "server.js",
"devDependencies": {
"nodemon": "^2.0.19",
"rollup-plugin-copy": "^3.4.0",
"vite": "^2.6.13"
},
"dependencies": {
"@esri/calcite-components": "next",
"express": "^4.18.1"
},
"scripts": {
"link": "cd calcite-components && npm link && cd .. && npm link @esri/calcite-components",
"clean": "rm -rf ./dist ./node_modules ./calcite-components",
"install:clean": "npm run clean && npm install",
"preinstall": "git submodule update --init --recursive --remote",
"postinstall": "cd calcite-components && npm i",
"start": "nodemon server.js",
"build": "npm run build:cc && npm run link && npm run build:vite",
"build:cc": "cd calcite-components && npm run build",
"build:cc-watch": "cd calcite-components && npm run build:watch",
"build:vite": "vite build",
"dev": "vite",
"serve": "vite preview"
}
}