-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
33 lines (33 loc) · 868 Bytes
/
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
{
"name": "babel-plugin-styled-components-px2rem-example",
"version": "1.0.0",
"description": "Example for babel-plugin-styled-components-px2rem",
"private": true,
"keywords": [
"px2rem",
"styled-components",
"babel"
],
"author": "xuyuanxiang <hi@xuyuanxaing.cn>",
"license": "MIT",
"dependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"babel-jest": "^24.9.0",
"babel-plugin-styled-components-px2rem": "file:../",
"cross-env": "^6.0.3",
"jest": "^24.9.0",
"postcss": "^7.0.26"
},
"scripts": {
"build": "babel src/index.jsx --out-dir dist/",
"test": "cross-env BABEL_ENV=test jest --no-cache"
}
}