-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.91 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.91 KB
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
{
"name": "lpsci-election-system-admin",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "next -p 8000",
"build": "next build && next export",
"start": "next start -p 8082",
"type-check": "tsc",
"lint:components": "eslint \"./components/**/*.{js,ts,tsx,json}\"",
"lint:pages": "eslint \"./pages/**/*.{js,ts,tsx,json}\"",
"lint:scoped-models": "eslint \"./scoped-models/**/*.{js,ts,tsx,json}\"",
"lint:utils": "eslint \"./utils/**/*.{js,ts,tsx,json}\""
},
"dependencies": {
"@lpsci/hooks": "^1.1.1",
"@lxsmnsyc/react-image": "^0.3.1",
"@lxsmnsyc/react-scoped-model": "^0.12.1",
"@next/bundle-analyzer": "^9.4.4",
"@zeit/next-source-maps": "^0.0.3",
"baseui": "^9.84.2",
"date-fns": "^2.9.0",
"dotenv": "^8.2.0",
"firebase": "^7.15.3",
"interweave": "^12.5.0",
"loadable-components": "^2.2.3",
"next": "^9.4.4",
"normalize.css": "^8.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons-kit": "^1.3.1",
"react-scoped-model": "^1.7.1",
"recharts": "^1.8.5",
"styletron-engine-atomic": "^1.4.6",
"styletron-react": "^5.2.7",
"swr": "^0.2.3",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"webpack": "^4.43.0"
},
"devDependencies": {
"@types/node": "^14.0.14",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/styletron-engine-atomic": "^1.1.0",
"@types/styletron-react": "^5.0.2",
"@types/styletron-standard": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"typescript": "^3.9.5"
}
}