-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1009 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1009 Bytes
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
{
"private": true,
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node dist/index.js"
},
"dependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"bootstrap": "^4.5.0",
"cross-env": "^7.0.2",
"dotenv": "^10.0.0",
"mysql2": "^2.3.0",
"next": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"reactstrap": "^8.9.0",
"reflect-metadata": "^0.1.13",
"sass": "^1.37.5",
"sequelize": "^6.6.5",
"sequelize-typescript": "^2.1.0"
},
"devDependencies": {
"@types/node": "^12.20.19",
"@types/react": "^16.9.44",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.1.2",
"@types/validator": "^13.6.3",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"typescript": "4.0"
},
"license": "MIT"
}