-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.4 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
{
"name": "snugug",
"private": true,
"version": "1.0.0",
"main": "package.json",
"license": "UNLICENSED",
"scripts": {
"dev": "sanity dev",
"start": "sanity start",
"pretest": "run-s lint",
"test": "run-s build",
"build": "sanity build",
"deploy": "sanity deploy",
"deploy-graphql": "sanity graphql deploy",
"prepare": "cd ../ && husky install ./cms/.husky",
"lint": "run-p *:lint",
"lint:staged": "lint-staged",
"fix": "run-p *:fix",
"js:lint": "eslint .",
"js:fix": "eslint --fix .",
"prettier:lint": "prettier -c .",
"prettier:fix": "prettier --write ."
},
"keywords": [
"sanity"
],
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"sanity": "^3.0.0",
"sanity-plugin-markdown": "^3.0.1",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@sanity/eslint-config-studio": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"dotenv": "^16.0.3",
"eslint": "^8.28.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.0",
"typescript": "^4.0.0"
},
"lint-staged": {
"**/*.{js,mjs,cjs,ts,json}": "eslint",
"**/*": "prettier -c"
}
}