-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.31 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
{
"private": true,
"name": "Anko Investor",
"version": "0.0.0",
"homepage": "https://landing.anko-investor.com",
"license": "MIT",
"scripts": {
"predeploy": "npm run build",
"deploy": "echo 'landing.anko-investor.com' > ./build/CNAME && gh-pages -d build -m \"$(git --no-pager log --format=format:'%s' -n 1)\"",
"build": "cross-env NODE_OPTIONS=--openssl-legacy-provider preact build",
"serve": "sirv build --port 8080 --cors --single",
"dev": "cross-env NODE_OPTIONS=--openssl-legacy-provider preact watch",
"lint": "eslint src",
"test": "jest"
},
"eslintConfig": {
"extends": "preact",
"ignorePatterns": [
"build/"
]
},
"devDependencies": {
"cross-env": "^7.0.3",
"enzyme": "^3.11.0",
"enzyme-adapter-preact-pure": "^4.0.0",
"eslint": "^8.30.0",
"eslint-config-preact": "^1.3.0",
"gh-pages": "^5.0.0",
"preact-cli": "^3.4.2",
"preact-svg-loader": "^0.2.1",
"sirv-cli": "^2.0.2"
},
"dependencies": {
"@material-ui/core": "^4.12.4",
"preact": "^10.11.3",
"preact-render-to-string": "^5.2.6",
"preact-router": "^3.2.1",
"redaxios": "^0.5.1",
"universal-cookie": "^4.0.4"
}
}