-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.06 KB
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
{
"name": "brightside-cms",
"config": {
"paths": "src:src/components:src/containers:src/images:src/services:src/utils"
},
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-eslint": "^8.2.6",
"cross-env": "^5.2.0",
"enzyme-adapter-react-16": "^1.2.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.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.0",
"husky": "^0.14.3",
"jest": "^23.2.0",
"jest-dom": "^1.12.0",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2"
},
"dependencies": {
"enzyme": "^3.4.1",
"firebase": "^5.4.0",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-router-prop-types": "^1.0.4",
"react-scripts": "1.1.4",
"react-scripts-cssmodules": "^1.1.10",
"react-test-renderer": "^16.4.2",
"redux": "^4.0.0",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0",
"semantic-ui-css": "^2.3.3",
"semantic-ui-react": "^0.82.2"
},
"scripts": {
"start": "cross-env NODE_PATH=%npm_package_config_paths% react-scripts start",
"build": "cross-env NODE_PATH=%npm_package_config_paths% react-scripts build",
"test": "cross-env NODE_PATH=%npm_package_config_paths% react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"prettify": "prettier --config .prettierrc --write \"src/**/*.js\"",
"lint": "eslint \"src/**/*.js\"",
"lint:fix": "eslint \"src/**/*.js\" --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}