This repository has been archived by the owner on Jul 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
70 lines (70 loc) · 1.99 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
{
"name": "fcc-columbus",
"description": "FreeCodeCamp Columbus website",
"version": "2.0.0",
"private": true,
"repository": "https://github.com/FCCColumbus/F3C_Website",
"author": "freecodecamp columbus contributors",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"lint": "npm run lint:styles; npm run lint:js",
"lint:js": "eslint --no-cache src --ext .js --ext .jsx --fix || exit 0",
"lint:styles": "stylelint src/**/*.scss --fix",
"test": "react-scripts test --watchAll=false --coverage; npm run test:coverage",
"test:coverage": "open ./coverage/lcov-report/index.html",
"test:watch": "react-scripts test --coverage"
},
"eslintConfig": {
"extends": "./eslint.config.js"
},
"stylelint": {
"extends": "./stylelint.config.js"
},
"engines": {
"node": ">=10.15.x",
"npm": ">=6.4.x"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link": "^1.2.13",
"apollo-link-error": "^1.1.12",
"apollo-link-http": "^1.5.16",
"axios": "^0.21.1",
"font-awesome": "^4.7.0",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0"
},
"devDependencies": {
"enzyme": "^3.10.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"node-sass": "^4.13.0",
"prettier-stylelint": "^0.4.2",
"stylelint": "^11.1.1",
"stylelint-config-idiomatic-order": "^8.0.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-scss": "^3.12.0"
}
}