-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
79 lines (79 loc) · 2.22 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "survey",
"version": "1.0.0",
"title": "Survey",
"description": "Pesquisa salarial entre frontenders do Brasil",
"homepage": "https://github.com/frontendbr/survey",
"browserslist": [
"> 1%",
"last 2 versions"
],
"author": {
"name": "Felipe Fialho",
"email": "[email protected]",
"url": "http://www.felipefialho.com"
},
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "webpack --mode production",
"deploy": "gh-pages-deploy",
"analyzer": "npm run build && webpack-bundle-analyzer ./dist/stats.json",
"lint": "npm run lint:js && npm run lint:styl",
"lint:styl": "stylint src/**/*.styl",
"lint:scss": "sass-lint -c sass-lint.json 'src/**/*.scss' -v -q",
"lint:js": "eslint ./src/",
"fix:js": "eslint ./src/ --fix",
"precommit": "npm run lint"
},
"gh-pages-deploy": {
"staticpath": "dist",
"prep": [
"build"
],
"noprompt": true
},
"dependencies": {
"@types/randomcolor": "^0.5.0",
"chart.js": "^2.7.2",
"randomcolor": "^0.5.3"
},
"devDependencies": {
"autoprefixer": "^9.0.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"cssnano": "^4.0.2",
"eslint": "^5.1.0",
"file-loader": "1.1.11",
"gh-pages-deploy": "0.4.2",
"html-webpack-plugin": "^3.2.0",
"imagemin-webpack-plugin": "^2.1.5",
"lost": "^8.3.0",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.9.2",
"offline-plugin": "^5.0.5",
"postcss-font-magician": "^2.2.1",
"postcss-loader": "^2.1.6",
"postcss-modules": "^1.1.0",
"pug": "^2.0.3",
"pug-loader": "^2.4.0",
"rucksack-css": "^1.0.2",
"rupture": "^0.7.1",
"rupture-sass": "^0.3.0",
"sass-lint": "^1.12.1",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"stylint": "^1.5.9",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"webpack-pwa-manifest": "^3.6.2"
}
}