-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
32 lines (32 loc) · 1.13 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
{
"name": "framerx-react-sync",
"version": "1.0.0",
"description": "Sync your react js (styled-)components with a FramerX project.",
"scripts": {
"push": "npm run lib:build && npm run lib:push && npm run src:push",
"lib:build": "rm -rf lib/ && BABEL_ENV=production && ./node_modules/babel-cli/bin/babel.js _production --out-dir lib",
"lib:push": "zip -rd styled-components.framerx lib/**/* && zip -ur styled-components.framerx lib",
"src:pull": "unzip -o styled-components.framerx design/* code/* -d .",
"src:push": "zip -ur styled-components.framerx code/* design/*",
"restore": "cp _styled-components.restore.framerx styled-components.framerx && zip -ur styled-components.framerx lib/* code/* design/*"
},
"keywords": [
"framerx",
"reactjs",
"react",
"tools",
"components",
"export",
"import",
"sync"
],
"author": "Simon Franzen <simon@zauberware.com>",
"license": "MIT",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1"
}
}