-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 1015 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
34
35
36
37
{
"name": "figma2css-app",
"version": "0.0.6",
"description": "",
"main": "figma2css-app.js",
"bin": "figma2css-app.js",
"scripts": {
"backend": "./node_modules/.bin/supervisor -k -- ./figma2css-app.js",
"backend-test": "node ./__test__/endpoints.js",
"frontend": "rollup -c -w",
"build": "rollup -c",
"start": "sirv ./public",
"figma2css": "node ./figma2css-app.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"commander": "^5.1.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"figma2css-module": "^0.0.4",
"figmafetch-module": "^1.0.4",
"open": "^7.0.4",
"reload": "^3.0.4",
"supervisor": "^0.12.0",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"rollup": "^2.3.4",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-svelte": "^5.0.3",
"rollup-plugin-terser": "^5.1.2",
"sirv-cli": "^0.4.4",
"svelte": "^3.0.0"
}
}