forked from LIQNFT/candy-shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.2 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
{
"private": true,
"workspaces": [
"@liqnft/candy-shop",
"example"
],
"scripts": {
"start": "parcel example/index.html",
"build": "parcel build example/index.html --public-url ./ --no-scope-hoist",
"gh-pages": "push-dir --dir=dist --branch=gh-pages --cleanup --verbose",
"deploy": "yarn build && yarn gh-pages",
"format:check": "prettier --check lib/src",
"format:fix": "prettier --write lib/src",
"prepare": "husky install"
},
"devDependencies": {
"@parcel/packager-raw-url": "2.4.1",
"@parcel/packager-ts": "2.4.1",
"@parcel/transformer-html": "^2.4.1",
"@parcel/transformer-image": "^2.4.1",
"@parcel/transformer-less": "2.4.1",
"@parcel/transformer-posthtml": "^2.4.1",
"@parcel/transformer-typescript-types": "2.4.1",
"@parcel/transformer-webmanifest": "2.4.1",
"assert": "^2.0.0",
"husky": "^7.0.4",
"parcel": "^2.4.1",
"path-browserify": "^1.0.1",
"prettier": "^2.6.2",
"typescript": ">=3.0.0",
"util": "^0.12.4"
},
"alias": {
"react": "./lib/node_modules/react",
"react-dom": "./lib/node_modules/react-dom/profiling",
"scheduler/tracing": "./lib/node_modules/scheduler/tracing-profiling"
}
}