forked from directus-labs/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 805 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
{
"name": "directus-blitz-example",
"private": true,
"scripts": {
"dev": "blitz dev",
"build": "blitz build",
"start": "blitz start",
"lint": "eslint --ignore-path .gitignore --ext .js .",
"test": "jest",
"test:watch": "jest --watch",
"#prepare": "husky install"
},
"prettier": {
"semi": false,
"printWidth": 100
},
"lint-staged": {
"*.{js}": [
"eslint --fix"
]
},
"dependencies": {
"@directus/sdk": "9.12.2",
"blitz": "0.45.4",
"modern-normalize": "1.1.0",
"react": "18.0.0-beta-149b420f6-20211119",
"react-dom": "18.0.0-alpha-5ca4b0433-20211020"
},
"devDependencies": {
"eslint": "7.32.0",
"husky": "7.0.4",
"lint-staged": "11.3.0-beta.2",
"prettier": "2.5.1",
"pretty-quick": "3.1.3"
}
}