-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.35 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.35 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
{
"name": "weblg",
"version": "1.0.0",
"main": "index.js",
"author": "JustinWomack <womack.justin@rocketmail.com>",
"license": "MIT",
"scripts": {
"build": "next build && tsc --project tsconfig.server.json",
"dev": "ts-node --project tsconfig.server.json index.ts",
"start": "tsc && babel .dist -d lib && node lib",
"serve": "node dist/index.js"
},
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jss": "^10.5.0",
"next": "^10.0.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-particles-js": "^3.4.1",
"react-redux": "^7.2.2",
"react-swipeable-views": "^0.13.9",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"typesafe-actions": "4.4.2",
"utility-types": "^3.10.0",
"validator": "^13.5.2"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/node": "^7.12.6",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@types/express": "^4.17.9",
"@types/node": "^14.14.10",
"@types/react": "^17.0.0",
"@types/react-redux": "^7.1.11",
"@types/validator": "^13.1.3",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
}
}