-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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": "create-next-example-app",
"description": "A Next.js starter app.",
"repository": {
"type": "git",
"url": "https://github.com/zeit/now-examples/tree/master/nextjs"
},
"engines": {
"node": "12.x",
"npm": "6.x"
},
"registry": "https://registry.npmjs.org/",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "cross-env DEBUG_PRINT_LIMIT=20000 jest",
"test-watch": "cross-env DEBUG_PRINT_LIMIT=20000 jest --watch",
"lint": "eslint \"/*.{js,ts,jsx,tsx}\"",
"lint-fix": "eslint \"*.{js,ts,jsx,tsx}\" --fix"
},
"dependencies": {
"@material-ui/core": "^4.8.2",
"@material-ui/icons": "^4.5.1",
"cheerio": "^1.0.0-rc.3",
"dayjs": "^1.8.20",
"fontfaceobserver": "^2.1.0",
"mem": "^6.0.1",
"next": "^9.1.6",
"node-fetch": "^2.6.0",
"ramda": "^0.26.1",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@hapi/joi": "^16.1.8",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.4.1",
"@types/cheerio": "^0.22.15",
"@types/hapi__joi": "^16.0.5",
"@types/jest": "^24.0.25",
"@types/node": "^12.12.22",
"@types/node-fetch": "^2.5.4",
"@types/ramda": "^0.26.39",
"@types/react": "^16.9.17",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^7.0.1",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"jest": "^24.9.0",
"now": "^16.7.0",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.4",
"typescript": "^3.7.4"
}
}