-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.41 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
{
"private": true,
"scripts": {
"start": "node core/scripts/server.js",
"deploy": "npm run build && node core/scripts/deploy.js",
"build-next": "next build && next export",
"build": "rm -rf out && npm run build-next && node core/scripts/after-build.js",
"fetch-t10n": "export GOOGLE_APPLICATION_CREDENTIALS='./secrets.json' && node core/scripts/fetch-t10n.js",
"lint": "tslint -p . -c tslint.json --fix --format verbose",
"tslint-check": "tslint-config-prettier-check ./tslint.json"
},
"dependencies": {
"@svgr/webpack": "^6.2.1",
"@types/glob": "^7.2.0",
"gh-pages": "^3.2.3",
"glob": "^7.2.0",
"next": "^12.1.0",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "^17.0.2",
"react-is": "18.2.0",
"react-lazyload": "^3.2.0",
"react-social-media-embed": "^2.0.12",
"styled-components": "^5.3.3",
"stylis-plugin-rtl": "1.1.0",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@types/react-copy-to-clipboard": "^5.0.2",
"@types/react-lazyload": "^3.1.1",
"@types/styled-components": "^5.1.23",
"babel-plugin-styled-components": "^2.0.6",
"googleapis": "^95.0.0",
"prettier": "^2.5.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"tslint-react": "^5.0.0",
"typescript": "^4.5.5"
}
}