forked from udacity/fend-project-memory-game
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.02 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.02 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
{
"name": "fend-project-memory-game",
"version": "1.0.0",
"description": "Memory Match Game",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --config webpack-dev.js --open",
"build": "webpack --config webpack-prod.js && cp CNAME dist/",
"test": "cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ARogala/fend-project-memory-game.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ARogala/fend-project-memory-game/issues"
},
"homepage": "https://github.com/ARogala/fend-project-memory-game#readme",
"devDependencies": {
"clean-webpack-plugin": "^2.0.1",
"css-loader": "^2.1.1",
"cypress": "^3.2.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.6.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.2.1"
}
}