This repository has been archived by the owner on Jun 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·66 lines (66 loc) · 1.81 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
{
"name": "lyrics-poster",
"version": "1.0.0",
"private": true,
"description": "Create posters of your favorite artists written in their lyrics",
"author": "Samuel Meuli <dev@samuelmeuli.com>",
"repository": "github:samuelmeuli/lyrics-poster",
"homepage": "https://lyricsposter.net",
"license": "GPL-3.0",
"scripts": {
"start": "webpack-dev-server --host 0.0.0.0 --mode development --port 3000",
"build": "webpack --mode production",
"lint": "run-s lint:*",
"lint:css": "stylelint '**/*.scss' --syntax scss",
"lint:js": "eslint ."
},
"dependencies": {
"file-saver": "^2.0.0",
"font-picker-react": "^2.0.3",
"imagedata-filters": "^1.0.1",
"normalize.css": "^8.0.0",
"prop-types": "^15.6.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-input-numeric": "^1.0.0",
"react-magnifier": "^2.0.1",
"react-redux": "^6.0.0",
"react-spinkit": "^3.0.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.3.1",
"babel-loader": "^8.0.4",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^3.0.1",
"husky": "^1.1.4",
"node-sass": "^4.8.3",
"npm-run-all": "^4.1.2",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.0.3",
"style-loader": "^0.23.1",
"stylelint": "^9.8.0",
"stylelint-config-primer": "^3.0.1",
"url-loader": "^1.0.1",
"webpack": "^4.12.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn lint"
}
}
}