-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.63 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
80
81
82
83
{
"name": "lookmaker",
"version": "1.0.0",
"description": "this valentine's day, why not create yourself a whole new Look?",
"private": true,
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --mode development",
"build": "NODE_ENV=production webpack --mode production",
"lint:js": "eslint \"src/**/*.{js,jsx}\"",
"lint:scss": "stylelint 'src/**/*.scss' --syntax scss",
"lint": "npm run-script lint:js && npm run-script lint:scss",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/witch-zone/lookmaker.git"
},
"keywords": [],
"author": "dani quinn sexton <[email protected]> (http://glitter.tech)",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/witch-zone/lookmaker/issues"
},
"homepage": "http://lookmaker.witch.zone",
"dependencies": {
"classnames": "^2.2.6",
"fast-deep-equal": "^2.0.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"normalize.css": "^8.0.0",
"prop-types": "^15.6.0",
"query-string": "^5.1.0",
"ramda": "^0.25.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"recompose": "^0.26.0",
"redux": "^3.7.2",
"stylelint": "^9.3.0"
},
"devDependencies": {
"autoprefixer": "^8.6.5",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-ramda": "^1.4.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"file-loader": "^1.1.11",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"imagemin-webpack-plugin": "^2.1.5",
"img-loader": "^3.0.0",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.9.2",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"postcss-loader": "^2.1.6",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"stylelint-config-sass-guidelines": "^5.0.0",
"stylelint-scss": "^3.1.3",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"webpack-spritesmith": "^0.5.1"
},
"lint-staged": {
"src/**/*.js": "eslint",
"src/**/*.jsx": "eslint",
"src/**/*.scss": "stylelint --syntax scss"
}
}