-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1015 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
38
39
40
{
"private": true,
"name": "gtmaa",
"version": "1.0.1",
"license": "MIT",
"scripts": {
"build": "export NODE_OPTIONS=--openssl-legacy-provider && preact build",
"serve": "sirv build --port 8080 --cors --single",
"dev": "preact watch",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"preact",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"build/"
]
},
"dependencies": {
"contentful": "^9.1.33",
"dotenv": "^16.0.1",
"preact": "^10.6.5",
"preact-render-to-string": "^5.1.4",
"preact-router": "^4.0.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.9.0",
"eslint-config-preact": "^1.3.0",
"node-sass": "^6.0.1",
"preact-cli": "^3.0.0",
"sass-loader": "^10.2.0",
"sirv-cli": "^1.0.0-next.3",
"typescript": "^3.7.5"
}
}