-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.62 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.62 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
56
57
58
{
"name": "pixelgame",
"version": "0.1.0",
"description": "Game of guessing the displayed character/game",
"author": "Simon Legros",
"contributors": [
{
"name": "Simon Legros"
}
],
"keywords": [
"nuxt",
"socket.io",
"socket.io-client",
"vue",
"vuejs",
"pixelgame"
],
"repository": "https://github.com/lanets/pixelgame",
"scripts": {
"dev": "nodemon -w ./server/server.js -w nuxt.config.js ./server/server.js",
"build": "nuxt build",
"start": "NODE_ENV=production node ./server/server.js",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore . --fix",
"format": "prettier-eslint —eslint-config-path ./.eslintrc.js --write '**/*.js’"
},
"dependencies": {
"axios": "^0.19.2",
"express": "^4.14.0",
"nuxt": "latest",
"socket.io": "^1.7.2",
"socket.io-client": "^1.7.2",
"prettier-eslint": "^9.0.1",
"prettier-eslint-cli": "^5.0.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^1.0.1",
"@nuxtjs/eslint-module": "^1.0.0",
"@vue/test-utils": "^1.0.0-beta.27",
"ava": "^2.2.0",
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.2.0",
"bootstrap": "^4.1.3",
"bootstrap-vue": "^2.0.0",
"browser-env": "^3.2.5",
"cross-env": "^5.2.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": "^3.1.1",
"nodemon": "^1.18.9",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"require-extension-hooks": "^0.3.3",
"require-extension-hooks-babel": "^1.0.0",
"require-extension-hooks-vue": "^2.0.0"
}
}