-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 KB
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
42
{
"name": "@universalstandard/ook",
"version": "6.1.0",
"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",
"watch:yalc": "nodemon -x yalc push"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"babel-plugin-styled-components",
"@babel/plugin-proposal-optional-chaining"
]
},
"dependencies": {
"known-css-properties": "^0.14.0",
"lodash": "^4.17.11",
"mqpacker": "^7.0.0",
"postcss": "^7.0.17",
"react": "16.8.0",
"styled-components": "^5.0.0-beta.6"
},
"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"
}