-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.75 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
{
"name": "next_app",
"engines": {
"node": "12.x"
},
"version": "1.0.1",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"cross-env": "^7.0.2",
"css-loader": "^3.4.2",
"eslint": "^7.7.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-emotion": "^10.0.27",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"extracted-loader": "^1.0.7",
"file-loader": "^5.1.0",
"find-up": "^3.0.0",
"ignore-loader": "^0.1.2",
"jest": "^26.4.2",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.9.0",
"semantic-ui-less": "^2.4.1",
"url-loader": "^3.0.0"
},
"jest": {
"modulePathIgnorePatterns": [
"package.json"
]
},
"scripts": {
"test": "jest --no-cache ./*",
"watch": "jest --no-cache --watch ./*",
"lint": "eslint .",
"lint-test": "eslint . && jest --no-cache ./* ",
"vercel-dev": "vercel dev",
"dev": "next",
"debug": "cross-env NODE_OPTIONS=\"--inspect=9300\" && next",
"build": "next build",
"start": "next start",
"deploy": "vercel"
},
"dependencies": {
"@emotion/core": "^10.0.27",
"@loadable/component": "^5.12.0",
"emotion": "^10.0.27",
"less": "^3.11.1",
"next": "^10.0.5",
"next-seo": "^4.4.0",
"prismic-javascript": "^2.2.0",
"prismic-reactjs": "^1.2.0",
"qrcode.react": "^1.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"semantic-ui-react": "^2.0.1",
"swr": "^0.3.1"
}
}