-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.09 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
{
"name": "embed",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "parcel src/index.html",
"build": "NODE_ENV=staging parcel build --public-url . src/index.html && NODE_ENV=staging parcel build --public-url . --no-content-hash src/embed.ts && cp ./src/CNAME ./dist/ ",
"build:production": "parcel build --public-url . src/index.html && parcel build --public-url . --no-content-hash src/embed.ts && cp ./src/CNAME ./dist/ ",
"release": "yarn build:production && gh-pages -t -d dist"
},
"devDependencies": {
"@parcel/transformer-sass": "2.6.2",
"@types/node": "^18.0.3",
"gh-pages": "^4.0.0",
"parcel": "^2.6.0",
"postcss": "^8.0.0",
"postcss-modules": "^4.3.1",
"process": "^0.11.10",
"sass": "^1.53.0",
"typescript": "^4.7.4"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"alias": {
"src": "./src"
},
"dependencies": {
"history": "^5.3.0",
"hooks": "^0.3.2",
"isomorphic-fetch": "^3.0.0",
"preact": "^10.9.0",
"preact-router": "^4.0.1",
"preact-swr": "^0.3.14",
"src": "^1.1.2"
}
}