-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.35 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
{
"name": "@stellar-apps/lazy-load",
"version": "2.0.2",
"main": "dist/cjs/index.js",
"author": "Jared Lunde <jared@BeStellar.co> (https://BeStellar.co)",
"license": "MIT",
"sideEffects": false,
"module": "dist/es/index.js",
"repository": "https://github.com/jaredLunde/stellar-apps/tree/master/packages/lazy-load",
"scripts": {
"build": "yarn run build:es && yarn run build:cjs",
"build:es": "rimraf dist/es && cross-env NODE_ENV=production BABEL_ENV=es babel src --out-dir dist/es && npm run prettier:es",
"build:cjs": "rimraf dist/cjs && cross-env NODE_ENV=production BABEL_ENV=cjs babel src --out-dir dist/cjs && npm run prettier:cjs",
"watch:es": "rimraf dist/es && cross-env NODE_ENV=production BABEL_ENV=dist/es babel src -w --out-dir dist/es",
"prettier": "prettier --single-quote --no-semi --no-bracket-spacing --trailing-comma es5 --write",
"prettier:es": "yarn prettier \"dist/es/**/*.js\"",
"prettier:cjs": "yarn prettier \"dist/cjs/**/*.js\""
},
"devDependencies": {
"@stellar-apps/babel-preset-es": "^1.0.4",
"@stellar-apps/babel-preset-react": "^1.0.1",
"prettier": "^1.15.3"
},
"dependencies": {
"@babel/runtime": "^7.4.0",
"@stellar-apps/intersection": "^1.0.6",
"juxt": "^3.0.3"
},
"peerDependencies": {
"curls": "^2.0.1",
"prop-types": "^15.6.0",
"react": "^16.7.0"
}
}