-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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
{
"name": "frontend-next",
"version": "0.4.0",
"private": true,
"scripts": {
"dev": "next dev",
"test": "jest",
"build": "next build && next export",
"start": "next start",
"lint": "eslint . --ext js,jsx . --ignore-path ./.eslintignore",
"lint:fix": "eslint --fix . --ignore-path ./.eslintignore"
},
"jest": {
"testPathIgnorePatterns": [
"package"
],
"testEnvironment": "jsdom",
"moduleDirectories": [
"node_modules",
"../"
]
},
"dependencies": {
"@mdx-js/loader": "2.3.0",
"@next/mdx": "13.1.6",
"@testing-library/react": "13.4.0",
"atherdon-react-markdown-component-body": "0.1.0",
"atherdon-react-markdown-component-content": "0.0.3",
"atherdon-react-markdown-component-html": "0.0.5",
"babel-jest": "29.4.2",
"email-template-google-billing": "0.1.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"jest": "29.4.2",
"newsletter-hn-misc-components": "1.2.0",
"next": "13.1.6",
"r-em-comp-interior": "0.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-email-components-table": "0.1.2",
"react-email-components-template": "0.2.0",
"react-email-components-typography": "0.0.4",
"react-test-renderer": "18.2.0",
"sass": "1.58.0"
},
"devDependencies": {
"@babel/plugin-proposal-do-expressions": "7.18.6",
"babel-eslint": "10.1.0",
"eslint": "8.33.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0"
}
}