-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.08 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.08 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
{
"name": "learning-progressive",
"version": "1.9.0",
"description": "Learning to write progressive web applications",
"main": "index.js",
"scripts": {
"build": "webpack",
"eslint": "eslint . --ignore-path .eslintignore",
"git:commit": "git add -A && git commit -m \"build and deploy\"",
"git:deploy": "git subtree push --prefix dist origin gh-pages",
"git:push-tags": "git push --all origin --follow-tags",
"postversion": "npm run build && npm run git:commit && npm run git:deploy && npm run git:push-tags",
"start": "webpack-dev-server --env.dev"
},
"author": "Gopikrishna Sathyamurthy",
"license": "ISC",
"dependencies": {
"localforage": "1.5.0",
"material-design-lite": "1.3.0"
},
"devDependencies": {
"babel-core": "6.23.1",
"babel-loader": "6.3.2",
"css-loader": "0.26.2",
"eslint": "3.16.1",
"extract-text-webpack-plugin": "2.0.0",
"file-loader": "0.10.1",
"html-webpack-plugin": "2.28.0",
"node-sass": "4.5.0",
"sass-loader": "6.0.2",
"webpack": "2.2.1",
"webpack-dev-server": "2.4.1"
}
}