-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.87 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
{
"name": "jose-web",
"version": "1.0.0",
"description": "Jose's Personal Website",
"main": "src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --inline"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Josecc/jose-web.git"
},
"author": "Jose Canahui",
"license": "ISC",
"bugs": {
"url": "https://github.com/Josecc/jose-web/issues"
},
"homepage": "https://github.com/Josecc/jose-web#readme",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.0",
"css-loader": "^0.28.4",
"eslint": "^4.4.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.5.3",
"raw-loader": "^0.5.1",
"redux-devtools": "^3.4.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"stylelint": "^8.4.0",
"stylelint-config-sass-guidelines": "^4.0.1",
"stylelint-order": "^0.8.0",
"stylelint-scss": "^2.2.0",
"svgo": "^0.7.2",
"svgo-loader": "^1.2.1",
"webpack": "^3.4.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^2.10.1"
},
"dependencies": {
"dotenv-webpack": "^1.5.4",
"file-loader": "^0.11.2",
"react": "^16.0.0-beta.3",
"react-dom": "^16.0.0-beta.3",
"react-ga": "^2.4.1",
"react-redux": "^5.0.6",
"react-responsive": "^1.3.4",
"react-router-dom": "^4.1.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"stylelint": {
"extends": "stylelint-config-sass-guidelines",
"plugins": "stylelint-scss",
"rules": {
"color-hex-case": "upper",
"selector-no-qualifying-type": null,
"selector-max-id": 1
}
}
}