-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 885 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
38
{
"name": "blueprint",
"version": "1.0.0",
"description": "A tool to convert Figma designs to Flutter code",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon src/index.ts",
"start": "node dist/index.js",
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"keywords": [
"figma",
"flutter",
"code generation"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^10.0.0",
"inquirer": "^8.1.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/inquirer": "^7.3.1",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"jest": "^26.6.3",
"nodemon": "^3.1.4",
"ts-jest": "^26.5.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
}
}