-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.15 KB
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
{
"devDependencies": {
"concurrently": "^6.5.1",
"dotenv": "^10.0.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.20.0",
"execa": "^4.0.2",
"grandstack": "^0.1.7",
"husky": "^4.3.8",
"lint-staged": "^12.1.3",
"prettier": "^2.0.5",
"prettier-eslint-cli": "^5.0.0"
},
"scripts": {
"seedDb": "node scripts/seed.js",
"start": "node scripts/start-dev.js",
"build": "node scripts/build.js",
"format": "find . -name \"*.js\" | grep -v node_modules | grep -v build | xargs prettier --write",
"format:log": "find . -name \"*.js\" | grep -v node_modules | grep -v build | xargs prettier",
"inferschema:write": "node scripts/inferSchema.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
]
},
"eslintIgnore": [
"resolvers.js",
"*.test.js",
"*.test.jsx"
],
"repository": {
"type": "git",
"url": "git://github.com/jaedag/fl-admin-portal.git"
},
"license": "Apache-2.0",
"version": "0.3.5"
}