This repository has been archived by the owner on Feb 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
63 lines (63 loc) · 1.57 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
{
"name": "cerebro-web",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"format": "prettier --write src/**/*.js src/**/**/*.js",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cerebro-iiitv/cerebro-web.git"
},
"author": "Cerebro Web Team",
"bugs": {
"url": "https://github.com/cerebro-iiitv/cerebro-web/issues"
},
"homepage": "https://github.com/cerebro-iiitv/cerebro-web#readme",
"dependencies": {
"@fullpage/react-fullpage": "^0.1.10",
"firebase": "^5.7.2",
"firebaseui": "^3.5.1",
"lodash": "^4.17.11",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-icons": "^3.2.2",
"react-particles-js": "^2.4.2",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"react-scripts": "^2.1.2",
"react-vertical-timeline-component": "^2.3.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"uikit": "^3.0.0-rc.26"
},
"devDependencies": {
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.2",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add ."
],
"src/**/**/*.js": [
"prettier --write",
"git add ."
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}