-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.28 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.28 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@firstclasspostcodes/cms",
"version": "0.0.1",
"description": "",
"main": "commonjs/index.js",
"module": "esm/index.js",
"author": "Firstclasspostcodes <support@firstclasspostcodes.com> (https://firstclasspostcodes.com)",
"license": "MIT",
"scripts": {
"build": "sanity build && npm run build-lib",
"build-lib": "npm run build-commonjs && npm run build-esm",
"build-commonjs": "BABEL_ENV=commonjs babel src/lib --out-dir commonjs --copy-files --ignore '**/test' --source-maps inline",
"build-esm": "BABEL_ENV=esm babel src/lib --out-dir esm --copy-files --ignore '**/test' --source-maps inline",
"commit": "npx git-cz",
"develop": "dotenv sanity start",
"graphql-deploy": "dotenv sanity graphql deploy -- --no-playground",
"lint": "eslint . --ext .js --ext .jsx --ignore-path .gitignore",
"pretest": "npm run lint",
"studio-deploy": "dotenv sanity deploy",
"test": "sanity check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firstclasspostcodes/web-cms.git"
},
"bugs": {
"url": "https://github.com/firstclasspostcodes/web-cms/issues"
},
"homepage": "https://github.com/firstclasspostcodes/web-cms#readme",
"dependencies": {
"@firstclasspostcodes/sw14": "^2.3.1",
"@sanity/base": "^1.149.19",
"@sanity/block-content-to-react": "^2.0.7",
"@sanity/code-input": "^1.149.16",
"@sanity/components": "^1.149.19",
"@sanity/core": "^2.3.8",
"@sanity/default-layout": "^1.149.19",
"@sanity/default-login": "^1.149.18",
"@sanity/desk-tool": "^1.149.19",
"@sanity/vision": "^2.2.6",
"ajv": "^6.12.6",
"deepmerge": "^4.2.2",
"prop-types": "^15.7.2",
"react": "^16.14",
"react-dom": "^16.14",
"react-helmet": "^6.1.0",
"react-icons": "^4.2.0",
"sanity-plugin-color-list": "^1.2.1",
"sanity-plugin-datatable": "^1.1.0",
"sanity-plugin-json-input": "^0.1.0",
"sanity-plugin-seo-tools": "^1.1.2",
"styled-components": "^5.2.1",
"styled-components-breakpoint": "^3.0.0-preview.20"
},
"devDependencies": {
"@babel/cli": "^7.12.17",
"@babel/core": "^7.12.17",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-proposal-export-namespace-from": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.17",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.12.13",
"@babel/register": "^7.12.13",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@sanity/cli": "^2.3.8",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.1",
"babel-plugin-add-react-displayname": "0.0.5",
"babel-plugin-styled-components": "^1.12.0",
"babel-runtime": "^6.26.0",
"dotenv-cli": "^4.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^2.5.1",
"git-cz": "^4.7.6",
"husky": "^5.0.9",
"prettier": "^1.19.1"
}
}