-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.62 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
{
"name": "meguro-nextjs",
"version": "0.8.0",
"description": "Portfolio site using Next.js",
"author": "Alvaro Garcia",
"license": "MIT",
"private": true,
"scripts": {
"start": "npm run dev",
"build": "npm run clean && next build",
"build:demo": "npm run clean && env USE_DEMO=yes npm run build",
"clean": "npm run clean:next & npm run clean:out",
"clean:next": "rm -rf .next",
"clean:out": "rm -rf out",
"export": "npm run build && next export",
"export:demo": "npm run build:demo && env USE_DEMO=yes next export",
"dev": "next dev",
"dev:demo": "env USE_DEMO=yes next dev",
"docker": "docker-compose up -d",
"docker:recreate": "docker-compose down && docker-compose build --no-cache && docker-compose up",
"docker:stop": "docker-compose down",
"serve": "next start",
"serve:static": "node scripts/server-static.js",
"test": "npm run test:types && npm run test:lint && npm run test:e2e && npm run test:unit && npm run test:prettier",
"test:lint": "eslint \"**/*.{js,ts,tsx}\"",
"test:prettier": "prettier --check \"**/*.{js,ts,tsx,json}\"",
"test:types": "tsc",
"test:e2e": "start-server-and-test dev:demo http://localhost:3000/meguro-nextjs \"cypress run\"",
"test:e2e:dev": "cypress open",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"prettier": "prettier --write \"**/*.{js,ts,tsx,json}\"",
"deploy": "npm run test && npm run export:demo && touch out/.nojekyll && gh-pages --dotfiles -d out"
},
"dependencies": {
"@mdx-js/loader": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@types/jest": "^26.0.23",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.throttle": "^4.1.6",
"@types/mdx-js__react": "^1.5.3",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"@zeit/next-stylus": "^1.0.0",
"babel-loader": "^8.2.2",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"glob": "^7.1.7",
"gray-matter": "^4.0.3",
"jest": "^27.0.2",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"next": "^10.2.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scrollbars-custom": "^4.0.25",
"remark-unwrap-images": "^2.0.0",
"responsive-loader": "^2.3.0",
"sharp": "^0.28.3",
"stylus": "^0.54.8",
"typescript": "^4.3.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"cypress": "^7.4.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^3.2.0",
"prettier": "^2.3.0",
"start-server-and-test": "^1.12.3"
}
}