forked from sanity-io/demo-course-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 870 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
37
{
"name": "demo-course-platform",
"version": "1.0.0",
"description": "Sanity Studio + Next.js Website",
"author": "[email protected]",
"license": "UNLICENSED",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint ./web ./studio --fix",
"postinstall": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix"
}
},
"dependencies": {
"@sanity/language-filter": "^3.1.1",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"sanity": "^3.16.1"
},
"devDependencies": {
"@sanity/eslint-config-studio": "^2.0.1",
"eslint": "^8.40.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "2.8.8",
"typescript": "^5.0.4"
},
"prettier": {
"semi": false,
"printWidth": 100,
"bracketSpacing": false,
"singleQuote": true
}
}