-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.15 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
{
"name": "shopping-list-app",
"version": "0.1.0",
"private": true,
"scripts": {
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze": "cross-env ANALYZE=true next build",
"dev": "next dev",
"lint:pages": "eslint --fix './pages/**/*.{ts,tsx}'",
"lint:src": "eslint --fix './src/**/*.{ts,tsx}'",
"lint": "yarn run lint:src && yarn run lint:pages",
"serverless:debug": "sls --debug",
"serverless:deploy": "npx serverless",
"serverless:watch": "sls --watch",
"start": "next start"
},
"dependencies": {
"@auth0/nextjs-auth0": "^0.10.0",
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"@types/node": "^13.7.0",
"@types/react": "^16.9.19",
"aws-sdk": "^2.603.0",
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"framer-motion": "^1.8.4",
"isomorphic-unfetch": "^3.0.0",
"next": "^9.3.2",
"next-pwa": "^2.3.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"uuid": "^7.0.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^9.1.6",
"@serverless/aws-dynamodb": "^4.0.0",
"@types/next": "7.0.6",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"eslint": "^6.2.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.1.0",
"eslint-config-react-app": "^5.0.1",
"eslint-loader": "^3.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"husky": "^3.1.0",
"prettier": "^1.5",
"pretty-quick": "^2.0.1",
"serverless-next.js": "^1.8.0",
"typescript": "^3.7.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}