generated from JeffSalinas/react-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·37 lines (37 loc) · 1.05 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
{
"name": "puzzle-pack",
"version": "1.0.0",
"description": "A full stack implementation of two TI-83 calculator games: Block Dude and Puzzle Frenzy, renamed Quadrilateral Bro and Tricky Tricky, respectively.",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack -d -w",
"compile": "webpack-dev-server -d",
"start": "nodemon server.js"
},
"author": "Salinas",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel": "^6.23.0",
"babel-loader": "^8.0.6",
"react": "^16.8.6",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"@material-ui/core": "^4.8.1",
"@material-ui/icons": "^4.5.1",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"moment": "^2.24.0",
"mongoose": "^5.8.2",
"nodemon": "^1.19.1",
"react-dom": "^16.8.6",
"react-router-dom": "^5.1.0"
}
}