-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.67 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
{
"name": "a_trivia_game",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"author": "Glauber Mota",
"license": "ISC",
"homepage": "https://github.com/glauberm/a_trivia_game#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --progress --colors",
"start": "webpack && npm run dev",
"build": "webpack --mode production",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive"
},
"dependencies": {
"normalize.css": "^8.0.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"autoprefixer": "^9.4.7",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"browser-sync": "^2.24.6",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"cssnano": "^4.1.10",
"eslint": "^5.14.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.5",
"node-sass-chokidar": "^1.3.3",
"postcss": "^7.0.14",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.6",
"postcss-preset-env": "^5.3.0",
"style-loader": "^0.21.0",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/glauberm/a_trivia_game.git"
},
"bugs": {
"url": "https://github.com/glauberm/a_trivia_game/issues"
}
}