-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.74 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
{
"name": "rokka-stacks-generator",
"version": "1.0.7",
"description": "Generate and upload rokka.io stacks based on yml files in a component folder.",
"main": "./dist/index.js",
"bin": {
"rokka-stacks-generator": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rokka-io/rokka-stacks-generator.git"
},
"homepage": "https://github.com/rokka-io/rokka-stacks-generator#readme",
"license": "MIT",
"private": false,
"scripts": {
"watch": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"start": "ts-node -r dotenv/config src/index.ts -f ../test -o ../test/output/styles.json",
"test": "ts-node -r dotenv/config src/index.ts -f ./../../../frontend/components -o ./../../../frontend/rokka/styles.json",
"test-upload": "ts-node -r dotenv/config src/upload.ts -j ./../../../frontend/rokka/styles.json",
"build": "tsc -p .",
"lint": "tsc --noEmit && eslint . --ext .js,.jsx,.ts,.tsx",
"pretty": "prettier --write '**/*.{js,ts}'"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/node": "^20.8.8",
"@types/yaml": "^1.9.7",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"ts-node": "^10.2.1",
"typescript": "^4.9.5"
},
"dependencies": {
"commander": "8.2.0",
"dotenv": "^10.0.0",
"glob": "^7.2.0",
"rokka": "^3.0.1",
"yaml": "^1.10.2"
}
}