-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 1.41 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
{
"name": "@raisely/cli",
"version": "1.8.3",
"description": "Raisely CLI for local development",
"main": "./src/cli.js",
"type": "module",
"bin": {
"raisely": "./bin/raisely.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=18"
},
"author": "Raisely",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"chalk": "^2.4.2",
"commander": "^9.2.0",
"express": "^4.17.3",
"folder-hash": "^4.0.2",
"fzstd": "^0.1.1",
"glob": "^7.1.6",
"glob-promise": "^3.4.0",
"http-proxy-middleware": "^2.0.4",
"inquirer": "^6.3.1",
"jwt-decode": "^3.0.0-beta.2",
"lodash": "^4.17.11",
"node-fetch": "^3.2.3",
"node-sass": "^9.0.0",
"node-watch": "^0.7.1",
"open": "^8.4.0",
"ora": "^3.4.0",
"p-limit": "^4.0.0"
},
"devDependencies": {
"prettier": "^2.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raisely/cli.git"
},
"keywords": [
"cli",
"raisely"
],
"bugs": {
"url": "https://github.com/raisely/cli/issues"
},
"homepage": "https://github.com/raisely/cli#readme",
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"useTabs": true,
"tabWidth": 4,
"arrowParens": "always",
"quoteProps": "consistent",
"bracketSpacing": true
}
}