-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.62 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
55
56
57
58
59
60
61
{
"name": "jambonz",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"postinstall": "rm -rf public/fonts && cp -R ./node_modules/@jambonz/ui-kit/public/fonts ./public/fonts",
"dev": "next",
"lint": "next lint",
"start": "next start",
"build": "next build",
"export": "next export",
"pretest": "node cypress/scripts/fixtures.js",
"test": "cypress run --headless --browser chrome",
"posttest": "rm -rf cypress/fixtures"
},
"contributors": [
{
"name": "Brandon Lee Kitajchuk",
"email": "[email protected]",
"url": "https://www.kitajchuk.com"
}
],
"license": "MIT",
"dependencies": {
"@jambonz/ui-kit": "^0.0.21",
"nanoid": "^3.1.22",
"next": "^12.1.4",
"next-plugin-preact": "^3.0.7",
"preact": "^10.7.2",
"preact-render-to-string": "^6.5.0",
"prismjs": "^1.23.0",
"react": "npm:@preact/compat",
"react-dom": "npm:@preact/compat",
"react-feather": "^2.0.10",
"react-gtm-module": "^2.0.11",
"react-ssr-prepass": "npm:preact-ssr-prepass"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-plugin-prismjs": "^2.0.1",
"cypress": "^7.7.0",
"env-cmd": "^10.1.0",
"eslint": "8.18.0",
"eslint-config-next": "12.1.6",
"gray-matter": "^4.0.2",
"husky": "^6.0.0",
"lint-staged": "^12.4.1",
"remark": "^13.0.0",
"remark-gfm": "^1.0.0",
"remark-html": "^13.0.1",
"sass": "^1.32.8",
"sharp": "^0.30.4",
"yamljs": "^0.3.0"
},
"lint-staged": {
"src/**/*.js": "npm run lint",
"pages/**/*.js": "npm run lint"
}
}