-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.56 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
39
40
{
"name": "minimum-parcel-lib",
"version": "1.0.1",
"description": "A boilerplate for react libraries bundled with parcel",
"main": "dist/index.js",
"repository": "https://github.com/jdmg94/minimum-parcel-lib.git",
"author": "José Muñoz <jdmg93@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"clean": "rm -rf ./dist",
"clean:demo": "rm -rf ./example/dist",
"start": "parcel watch ./lib/index.js --out-dir ./dist",
"start:demo": "parcel ./example/src/index.html --out-dir ./example/dist",
"build": "parcel build ./lib/index.js --global minimum-parcel-lib",
"build:demo": "parcel build ./example/src/index.html --out-dir ./example/dist --public-url ./",
"autobuild:on": "cp autobuild.hook .git/hooks/pre-commit",
"autobuild:off": "rm .git/hooks/pre-commit",
"deploy": "gh-pages -d ./example/dist",
"sourcemap": "source-map-explorer --html ./dist/index.js ./dist/index.map > source-map.html"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/plugin-syntax-object-rest-spread": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"babel-plugin-lodash": "^3.3.4",
"gh-pages": "^2.1.1",
"parcel-bundler": "^1.12.4",
"source-map-explorer": "^2.2.1"
},
"dependencies": {
"@babel/runtime": "^7.7.7",
"react": "^16.12.0",
"react-dom": "^16.12.0"
}
}