forked from ashwinkshenoy/awesome-developers
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.84 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.84 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
59
60
61
{
"name": "awesome-tech-events",
"version": "1.0.0",
"description": "A curated list of awesome tech events. Feel free to contribute! 🎓",
"scripts": {
"build": "webpack",
"start": "webpack-dev-server",
"precommit": "NODE_ENV=production lint-staged",
"deploy": "npm run build && cd dist && git init && git add . && git commit -m \"deploying new version\" && git remote add origin https://github.com/devncode/awesome-tech-events.git && git push --force origin master:gh-pages"
},
"lint-staged": {
"*.{js,jsx}": [
"pretty-quick --staged",
"eslint src/ --fix",
"git add"
],
"ignore": [
"**/dist/*.min.js"
]
},
"keywords": [],
"author": "Shreyas Agarkar <shreyas.a24@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/devncode/awesome-tech-events"
},
"license": "ISC",
"dependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1",
"webpack": "^3.5.5",
"html-webpack-plugin": "^2.30.1",
"copy-webpack-plugin": "^4.0.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.5",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-config-prettier": "^2.10.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.4.0",
"file-loader": "^0.11.2",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"node-sass": "^4.5.3",
"prettier": "^1.15.1",
"pretty-quick": "^1.8.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack-dev-server": "^2.7.1",
"webpack-merge": "^4.1.0"
}
}