-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.31 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.31 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
{
"name": "synquery-org-website",
"version": "1.0.0",
"description": "Website of synquery.org",
"repository": "git@synquery/synquery-org-website.git",
"author": "Synquery <support@synquery.com>",
"license": "MIT",
"private": false,
"dependencies": {
"clipboard": "^2.0.6",
"cross-fetch": "^3.1.3-alpha.6",
"dotenv": "^8.2.0",
"framer-motion": "^4.1.3",
"luxon": "^1.24.1",
"netlify-lambda": "^2.0.3",
"polished": "^4.1.1",
"prismjs": "^1.25.0"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.0.1",
"@parcel/transformer-yaml": "^2.0.1",
"markdown-it": "*",
"markdown-it-attrs": "*",
"format-message": "^6.2.3",
"front-matter": "^4.0.2",
"github-slugger": "^1.3.0",
"husky": "^4.2.5",
"intl": "*",
"jest": "^26.6.0",
"parcel": "^2.0.1",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
},
"resolutions": {
"sharp": "0.27.0"
},
"scripts": {
"setup": "npm i -g yarn && npm -i -g parcel; yarn add react react-dom && yarn add --dev parcel-bundler && npm i",
"setup:markdown": "yarn add --dev parcel-plugin-markdown",
"build": "yarn merge-translations && yarn copy-contributors && yarn build:parcel && yarn publish-changed",
"build:lambda": "netlify-lambda build src/lambda",
"build:parcel": "parcel build src/**/*.html",
"format": "prettier --write \"src/**/*.{js,jsx,json,md}\"",
"copy-index": "node src/scripts/copy-index.js",
"import-list": "node src/scripts/import-list.js",
"copy-contributors": "node src/scripts/copy-contributors.js",
"generate-heading-ids": "node src/scripts/generate-heading-ids.js",
"merge-translations": "node src/scripts/merge-translations.js",
"publish-changed": "node src/scripts/publish-changed.js",
"start": "parcel serve ./src/index.html --no-cache",
"start-org": "yarn merge-translations && yarn copy-contributors",
"start:lambda": "netlify-lambda serve src/lambda",
"test": "jest",
"serve": "serve ./dist -c ../src/data/serve.json"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}