-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.41 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.41 KB
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
79
80
{
"scripts": {
"dev": "next build && ts-node --project tsconfig.server.json ./src/server",
"build": "next build && next dev",
"start": "next start"
},
"name": "inustagram",
"version": "1.0.0",
"main": "index.js",
"license": "UNLICENSED",
"engines": {
"node": "12.x.x"
},
"dependencies": {
"@google-cloud/storage": "^4.6.0",
"@material-ui/core": "^4.9.7",
"@material-ui/icons": "^4.9.1",
"@types/http-proxy-middleware": "^0.19.3",
"@types/snakecase-keys": "^2.1.0",
"@zeit/next-css": "^1.0.1",
"body-parser": "^1.19.0",
"camelcase-keys": "^6.2.1",
"clsx": "^1.1.0",
"express": "^4.17.1",
"http-proxy-middleware": "^1.0.3",
"isomorphic-unfetch": "^3.0.0",
"multer": "^1.4.2",
"natural-compare-lite": "^1.4.0",
"next": "^9.3.1",
"nookies": "^2.2.0",
"qs": "^6.9.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-number-format": "^4.4.1",
"shortid": "^2.2.15",
"snakecase-keys": "^3.1.2",
"ts-node": "^8.8.1",
"validator": "^13.0.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/runtime": "^7.9.2",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^10.0.1",
"@types/cookie": "^0.3.3",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/express": "^4.17.3",
"@types/jest": "^25.1.4",
"@types/luxon": "^1.21.0",
"@types/material-ui": "^0.21.7",
"@types/multer": "^1.4.2",
"@types/natural-compare-lite": "^1.4.0",
"@types/node": "^13.9.2",
"@types/nookies": "^2.0.3",
"@types/qs": "^6.9.1",
"@types/react": "^16.9.25",
"@types/react-dates": "^17.1.10",
"@types/react-dom": "^16.9.5",
"@types/shortid": "^0.0.29",
"@types/validator": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"core-js": "^3.6.4",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"jest": "^25.1.0",
"node-sass": "^4.13.1",
"styled-jsx-plugin-sass": "^1.0.0",
"typescript": "^3.8.3",
"webpack": "^4.42.0"
}
}