-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.18 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
{
"name": "memory-game",
"main": "app.js",
"version": "1.0.0",
"description": "Memory game with JavaScript",
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PascalTassel/Memory-game"
},
"homepage": "https://github.com/PascalTassel/Memory-game#readme",
"keywords": [
"Game",
"JavaScript",
"ES6"
],
"author": "Pascal Tassel",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.11.5",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"css-loader": "^3.6.0",
"dotenv": "^10.0.0",
"laravel-mix": "^6.0.39",
"resolve-url-loader": "^3.1.0",
"sass": "^1.29.0",
"sass-loader": "^10.0.2",
"vue-template-compiler": "^2.6.14"
},
"browserslist": [
"last 2 versions"
],
"dependencies": {
"express": "^4.17.1",
"mysql": "^2.18.1"
}
}