-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.44 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.44 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
48
49
50
51
52
53
54
55
{
"name": "gamingit",
"version": "1.0.0",
"description": "",
"author": "",
"scripts": {
"dev": "nodemon backend/src/index.js",
"start": "node backend/src/index.js",
"build": "webpack --mode production --config ./webpack.config.js",
"test:unit": "vue-cli-service test:unit",
"test:coverage": "vue-cli-service test:unit --coverage",
"webpack": "webpack --mode development --watch",
"heroku-postbuild": "npm run build"
},
"main": "webpack.config.js",
"dependencies": {
"express": "^4.17.1",
"mongoose": "^5.11.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.6",
"primeicons": "^4.1.0",
"primevue": "^2.3.0",
"sinon": "^9.2.4",
"vue": "^2.6.12",
"vuex": "^3.6.0"
},
"jest": {
"automock": false,
"setupFiles": [
"./setupJest.js"
]
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@vue/cli-plugin-unit-jest": "^4.5.9",
"@vue/cli-service": "^4.5.9",
"@vue/test-utils": "^1.0.3",
"babel-loader": "^8.2.2",
"babel-preset-env": "^1.7.0",
"bcryptjs": "^2.4.3",
"css-loader": "^5.0.1",
"file-loader": "^6.2.0",
"flush-promises": "^1.0.2",
"jsonwebtoken": "^8.5.1",
"style-loader": "^2.0.0",
"vue-loader": "^15.9.5",
"vue-router": "^3.4.9",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0"
},
"license": "ISC"
}