-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.24 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
{
"name": "nextjs-base",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ICU_DATA=node_modules/full-icu next dev",
"build": "cross-env NODE_ICU_DATA=node_modules/full-icu next build",
"start": "cross-env NODE_ICU_DATA=node_modules/full-icu next start",
"export": "cross-env NODE_ICU_DATA=node_modules/full-icu next export",
"lint": "next lint",
"prisma:init": "npx prisma init",
"prisma:migrate": "npx prisma migrate dev --name \"init\" --preview-feature",
"prisma:generate": "npx prisma generate",
"prisma:push": "npx prisma db push",
"prisma": "npx prisma studio"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"@prisma/client": "2.28.0",
"@types/markdown-it": "^12.0.3",
"@types/markdown-it-emoji": "^2.0.2",
"@types/node": "^16.4.10",
"@types/react-dom": "^17.0.9",
"@types/react-redux": "^7.1.18",
"@types/styled-components": "^5.1.11",
"axios": "^0.21.1",
"bootstrap": "^5.0.2",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"full-icu": "^1.3.4",
"highlight.js": "^11.2.0",
"next": "11.0.1",
"next-redux-wrapper": "^7.0.2",
"prisma": "2.28.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "^7.2.4",
"redux": "^4.1.1",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0",
"sass": "^1.37.2",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.9",
"@babel/preset-react": "^7.14.5",
"@github-docs/frontmatter": "^1.3.1",
"@types/react": "^17.0.15",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-styled-components": "^1.13.2",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "7.32.0",
"eslint-config-next": "11.0.1",
"file-loader": "^6.2.0",
"frontmatter-markdown-loader": "^3.6.3",
"markdown-it": "^12.2.0",
"markdown-it-emoji": "^2.0.0",
"typescript": "^4.3.5"
}
}