-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.31 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
{
"name": "pquiz",
"version": "0.7.0",
"description": "A Complex Instruction-style Participation Quiz tool",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --color --open",
"build": "webpack",
"deploy": "git subtree split --prefix dist -b gh-pages && git push -f origin gh-pages:gh-pages && git branch -D gh-pages",
"publish": "git subtree split --prefix dist -b gh-pages && git push -f public gh-pages:master && git branch -D gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrpinsky/pquiz.git"
},
"author": "Nate Pinsky",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrpinsky/pquiz/issues"
},
"homepage": "https://github.com/mrpinsky/pquiz#readme",
"dependencies": {},
"devDependencies": {
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^4.2.2",
"elm-webpack-loader": "^7.0.1",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^4.4.1",
"mini-css-extract-plugin": "^0.11.1",
"node-sass": "^4.13.1",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.1.1"
}
}