-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
63 lines (63 loc) · 2.26 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "memory-match-react",
"version": "1.0.0",
"description": "Basic memory match game using ReactJS",
"main": "index.js",
"scripts": {
"start": "node dev_server.js",
"bundle": "webpack --config webpack.prod.js --progress",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/**/*.js src/**/*.jsx"
},
"author": "Michael Salvati",
"contributors": [
"Michael Salvati <info@msalvati.com> (https://github.com/3daddict)",
"Mateo Guzmán <mateo.guzmanalvarez@gmail.com> (https://github.com/mateoguzmana/)",
"Robin Hurtado <robin_aven94@hotmail.com> (https://github.com/robinHurtado/)",
"David Aguilar <davidaguilarh.94@gmail.com> (https://github.com/daguilar94)",
"Sunil Kumar Jain <rpspjjjj@gmail.com@gmail.com> (https://github.com/sunilsj99)",
"Cintia Tahirih <cintiatahirih.jp@gmail.com> (https://github.com/cTahirih)",
"Prashant Chaudhari <prashantchaudhari881@gmail.com> (https://github.com/pandaa880)",
"Alexis Pandaan <alexispandaan@gmail.com> (https://github.com/Alexius08)",
"Ivan Sosnin <vansosnin@gmail.com> (https://github.com/vansosnin)"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/3daddict/memory-match-react.git"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.4",
"@fortawesome/free-solid-svg-icons": "^5.3.1",
"@fortawesome/react-fontawesome": "^0.1.3",
"babel-polyfill": "^6.26.0",
"i": "^0.3.6",
"npm": "^6.4.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-redux": "^5.0.7",
"redux": "^4.0.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^1.1.11",
"image-webpack-loader": "^4.3.0",
"jest": "^23.6.0",
"postcss-loader": "^2.1.5",
"react-hot-loader": "^4.3.0",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.3",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2"
}
}