generated from gregorymacat/Best-README-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "guitarquiz",
"description": "Test your knowledge of notes on the guitar",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack --watch --config webpack.dev.js",
"build-prod": "webpack --config webpack.prod.js",
"start": "nodemon ./server/app.js",
"start-prod": "node ./server/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gregorymacat/guitarquiz.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gregorymacat/guitarquiz/issues"
},
"homepage": "https://github.com/gregorymacat/guitarquiz#readme",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.13.6",
"express": "^4.18.2",
"midi-sounds-react": "^1.2.54",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"universal-cookie": "^4.0.4"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"enzyme": "^3.11.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.9.0"
}
}