-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 2.48 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
{
"name": "next-aws-lambda",
"version": "0.0.0-development",
"description": "Minimal starter boilerplate project for Serverless Next.js on AWS Lambda",
"license": "MIT",
"author": "Meemaw <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Meemaw/next-aws-lambda"
},
"bugs": {
"url": "https://github.com/Meemaw/next-aws-lambda/issues"
},
"scripts": {
"dev": "next dev",
"dev:background": "yarn dev 2>&1 > /dev/null &",
"build": "next build",
"start": "next start",
"test": "yarn test:unit",
"test:unit": "jest",
"test:e2e": "testcafe chrome e2e/specs",
"test:e2e:headless": "testcafe chrome:headless e2e/specs",
"lint": "concurrently \"yarn prettier\" \"yarn eslint\"",
"eslint": "eslint --max-warnings 0 'src/**/*.{ts,tsx}' 'e2e/**/*.{ts,tsx}' --config .eslintrc.production.js",
"prettier": "prettier -l 'src/**/*' 'e2e/**/*'",
"prettier:fix": "prettier -l 'src/**/*' 'e2e/**/*' --write",
"storybook": "start-storybook"
},
"dependencies": {
"ky": "0.25.1",
"ky-universal": "0.8.2",
"next": "10.0.7",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@ffmpeg-installer/ffmpeg": "1.0.20",
"@storybook/addon-actions": "6.1.21",
"@storybook/addon-links": "6.1.21",
"@storybook/addon-storysource": "6.1.21",
"@storybook/react": "6.1.21",
"@testing-library/jest-dom": "5.11.9",
"@testing-library/react": "11.2.5",
"@testing-library/testcafe": "4.3.1",
"@testing-library/user-event": "12.7.1",
"@types/jest": "26.0.21",
"@types/node": "14.14.31",
"@types/react": "17.0.2",
"@typescript-eslint/eslint-plugin": "4.18.0",
"@typescript-eslint/parser": "4.18.0",
"babel-loader": "8.2.2",
"concurrently": "6.0.1",
"eslint": "7.22.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.3.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-testcafe": "0.2.1",
"eslint-plugin-testing-library": "3.10.2",
"jest": "26.6.3",
"next-page-tester": "0.22.0",
"prettier": "2.2.1",
"testcafe": "1.12.0",
"ts-jest": "26.5.1",
"ts-node": "10.0.0",
"typescript": "4.2.2",
"wait-on": "5.3.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}