-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "memezinga",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "standard",
"lint:fix": "standard --fix",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"deps:review": "lockfile-lint --path package-lock.json --type npm --validate-https --allowed-hosts npm && npm audit && npm outdated",
"deps:upgrade": "npm outdated; ncu -u && npm install && npm install --package-lock-only"
},
"dependencies": {
"lodash": "4.17.21",
"lowdb": "3.0.0",
"next": "12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"autoprefixer": "10.4.0",
"cross-env": "7.0.3",
"lockfile-lint": "4.6.2",
"npm-check-updates": "12.0.5",
"postcss": "^8.4.5",
"standard": "16.0.4",
"tailwindcss": "3.0.7"
},
"standard": {
"env": [
"jest",
"browser"
]
}
}