-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 2.7 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "trendzz",
"version": "0.1.1",
"license": "MIT",
"private": false,
"browserslist": [
"defaults",
"not op_mini all",
"not ie > 0"
],
"scripts": {
"upgrade-i": "npm-check --update",
"dev": "next dev",
"dev:static": "npm run build && npm run export && npm run start:static",
"build": "next build",
"export": "next export",
"build:analyze": "ANALYZE=true next build",
"start": "next start",
"start:static": "http-server ./out",
"prod": "npm run start",
"lint": "echo \" \n\nlinting all JS and TS files.\n\n\" && npm run lint:ts; echo \"\n\nLinting CSS.\n\n\" && npm run lint:css",
"lint:fix": "echo \" \n\nlinting all JS and TS files.\n\n\" && npm run lint:ts:fix ; echo \"\n\nLinting CSS.\n\n\" && npm run lint:css",
"lint:ts": "eslint ./**/*.{js,jsx,tsx,ts,css}",
"lint:ts:fix": "eslint ./**/*.{js,jsx,tsx,ts,css} --fix",
"lint:css": "stylelint ./**/*.css",
"tsc": "tsc .",
"test": "jest",
"test:init": "jest --init",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"dependencies": {
"@next/bundle-analyzer": "^10.2.0",
"@zeit/next-css": "^1.0.1",
"@zeit/next-source-maps": "^0.0.4-canary.1",
"framer-motion": "^4.1.15",
"github-trending-scrape": "^0.0.1",
"idb-keyval": "^5.0.5",
"isomorphic-fetch": "^3.0.0",
"lodash.uniqwith": "^4.5.0",
"next": "^10.2.0",
"next-pwa": "^5.2.21",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-ga": "^3.1.2",
"react-loading": "2.0.3",
"react-use-gesture": "^7.0.15"
},
"devDependencies": {
"@svgr/webpack": "^5.4.0",
"@types/lodash.uniqwith": "^4.5.6",
"@types/node": "^15.0.2",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.4.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-react-app": "^6.0.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.6",
"http-server": "^0.12.3",
"husky": "^6.0.0",
"npm-check": "^5.9.2",
"stylelint": "^13.5.0",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-no-unsupported-browser-features": "^4.0.0",
"typescript": "^4.2.4",
"webpack": "^4.0.0",
"webpack-cli": "^4.7.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run build && npm run export # && npm run lint:fix"
}
}
}