-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
58 lines (58 loc) · 1.83 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
{
"name": "awesome-gamified",
"version": "1.0.0",
"description": "Awesome Gamified - See your progress and save awesome links you've already seen!",
"main": "index.js",
"scripts": {
"start": "node_modules/.bin/webpack-dev-server --config webpack.dev.js --mode development --open --hot",
"lint": "eslint src/index.js src/containers/*.js src/components/**/*.js",
"start-lint": "run-p start lint",
"build": "node_modules/.bin/webpack --config webpack.prod.js --mode production",
"serve": "node_modules/.bin/http-server ./dist",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carolinaknoll/awesome-gamified.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/carolinaknoll/awesome-gamified/issues"
},
"homepage": "https://carolinaknoll.github.io/awesome-gamified",
"dependencies": {
"axios": "^0.21.2",
"gh-pages": "^2.1.1",
"marked": "^4.0.10",
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.1",
"react-toastify": "^5.3.2",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^3.2.0",
"eslint": "^6.2.1",
"eslint-plugin-react": "^7.14.3",
"npm-run-all": "^4.1.5",
"style-loader": "^1.0.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^4.2.1"
}
}