forked from nishanthvijayan/CoderCalendar-Extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.44 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
{
"name": "coder-calendar",
"version": "1.3.4",
"description": "Never miss a Coding contest again! Displays live and upcoming Programming Contests happening on a variety of popular platforms.",
"scripts": {
"production": "webpack -p",
"start": "./node_modules/.bin/webpack-dev-server --content-base dist --inline --hot",
"build": "webpack",
"lint": "./node_modules/.bin/eslint ./app --fix",
"release": "release-it"
},
"author": "Nishanth Vijayan",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"moment": "^2.15.1",
"react": "^15.1.0",
"react-dom": "^15.1.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^2.0.1",
"copy-webpack-plugin": "^4.5.2",
"create-file-webpack": "^1.0.2",
"eslint": "^4.2.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.10.0",
"release-it": "^10.3.1",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"zip-webpack-plugin": "^3.0.0"
},
"release-it": {
"github": {
"release": true,
"assets": [
"build/*.zip"
]
},
"npm": {
"publish": false
},
"scripts": {
"afterBump": "npm run build"
}
}
}