-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
41
{
"name": "ookook",
"version": "2.0.3",
"main": "dist.js",
"scripts": {
"dev": "run-p watch:*",
"build": "run-s build:*",
"build:babel": "babel index.js -o dist.js --minified",
"build:yalc": "yalc push",
"watch:babel": "babel -w index.js -o dist.js --minified",
"watch:yalc": "nodemon -x yalc push"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"babel-plugin-styled-components",
"@babel/plugin-proposal-optional-chaining"
]
},
"peerDependencies": {
"known-css-properties": "0.x.x",
"lodash": "4.x.x",
"mqpacker": "7.x.x",
"react": "16.x.x",
"styled-components": "beta"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-plugin-styled-components": "^1.10.4",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5"
},
"license": "MIT"
}