-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.28 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "manipulative",
"description": "React devtool for modifying Emotion styles in browser",
"version": "0.1.1",
"main": "client.cjs.js",
"module": "client.js",
"homepage": "https://github.com/paulshen/manipulative#readme",
"repository": "github:paulshen/manipulative",
"bin": {
"manipulative-server": "server.js"
},
"types": "types/client.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c && yarn ts-declarations",
"postbuild": "yarn copy",
"ts-declarations": "tsc --emitDeclarationOnly --declarationDir dist/types --declaration true",
"copy": "cp dist/types/client.d.ts dist/types/macro.d.ts && copyfiles -f package.json README.md LICENSE dist && json -I -f dist/package.json -e \"this.private=false; this.devDependencies=undefined; this.optionalDependencies=undefined;\""
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.12.7",
"@babel/plugin-transform-regenerator": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/plugin-transform-typescript": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@emotion/babel-preset-css-prop": "^11.0.0",
"@emotion/react": "^11.1.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-typescript": "^6.1.0",
"@types/babel-plugin-macros": "^2.8.4",
"@types/babel__core": "^7.1.12",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.9",
"@types/node": "^14.14.10",
"@types/prettier": "^2.1.5",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"copyfiles": "^2.4.1",
"json": "^10.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.33.3",
"rollup-plugin-executable": "^1.6.1",
"tslib": "^2.0.3",
"typescript": "^4.1.2"
},
"dependencies": {
"@babel/core": "^7.12.9",
"@babel/types": "^7.12.7",
"babel-plugin-macros": "^3.0.0",
"body-parser": "^1.19.0",
"commander": "^6.2.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"prettier": "^2.2.0",
"zustand": "^3.2.0"
},
"peerDependencies": {
"@emotion/react": "11.x",
"react": "17.x",
"react-dom": "17.x"
},
"author": "Paul Shen",
"license": "MIT",
"keywords": [
"react",
"devtool",
"emotion",
"style"
]
}