-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 796 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 796 Bytes
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
{
"name": "grind-example-cli",
"version": "0.8.3",
"private": true,
"bin": {
"grind-example-cli": "./build/bin/cli"
},
"scripts": {
"build": "grind-build",
"cli": "grind-boot",
"lint:js": "eslint app boot"
},
"dependencies": {
"grind-cli": "^0.8.0",
"grind-framework": "^0.8.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/register": "^7.9.0",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-isnil": "^1.0.1",
"babel-preset-grind": "^0.8.0-beta.4",
"eslint": "^6.8.0",
"eslint-plugin-import-auto-name": "^1.1.0",
"grind-scripts": "^0.8.3"
},
"engines": {
"node": ">=10.13",
"npm": ">=3.0"
},
"preferGlobal": true
}