-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.25 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
{
"name": "devx-website",
"version": "1.0.0",
"description": "The DevX Website, 2018-2019",
"main": "index.js",
"repository": "https://github.com/ucladevx/website-v2",
"scripts": {
"build": "parcel build src/index.html -d dist/",
"dev": "parcel ./src/index.html",
"format": "prettier-eslint --write \"src/**/*.{js,scss}\"",
"lint": "eslint --fix src",
"test": "echo \"No tests specified\""
},
"author": "",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,json,css,md}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"babel-plugin-styled-components": "^1.10.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"css-loader": "^1.0.0",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-import-resolver-alias": "^1.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.0.0-rc.14",
"lint-staged": "^7.2.2",
"mini-css-extract-plugin": "^0.4.2",
"node-sass": "^4.12.0",
"parcel-bundler": "^1.11.0",
"parcel-plugin-static-files-copy": "^2.0.0",
"prettier": "^1.14.2",
"prettier-eslint-cli": "^4.7.1",
"sass": "^1.17.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"surge": "^0.20.1",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.2.0"
},
"dependencies": {
"assets": "^3.0.1",
"classnames": "^2.2.6",
"date-fns": "^1.30.1",
"images": "^3.0.2",
"polished": "^3.4.0",
"prop-types": "^15.6.2",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-ga": "^2.5.3",
"react-modal": "^3.11.1",
"react-router-dom": "^4.3.1",
"reactjs-popup": "^1.2.0",
"styled-components": "^4.1.3"
},
"staticFiles": {
"staticPath": "static",
"watcherGlob": "**"
}
}