|
1 | 1 | {
|
2 | 2 | "name": "coderplex-app",
|
3 | 3 | "version": "1.0.0",
|
4 |
| - "description": "", |
| 4 | + "description": "We are on a mission to improve the state of tech in India", |
5 | 5 | "main": "index.js",
|
6 | 6 | "scripts": {
|
7 | 7 | "test": "xo && jest",
|
8 |
| - "lint": "prettier 'utils/**/*.js' 'components/**/*.js' 'pages/**/*.js' 'lib/**/*.js' 'hocs/**/*.js' '*.js' --write --single-quote --print-width='80' --trailing-comma='all' && xo --fix", |
| 8 | + "lint": |
| 9 | + "prettier 'utils/**/*.js' 'components/**/*.js' 'pages/**/*.js' 'lib/**/*.js' 'hocs/**/*.js' '*.js' --write --single-quote --print-width='80' --trailing-comma='all' && xo --fix", |
9 | 10 | "precommit": "lint-staged",
|
10 | 11 | "analyze": "cross-env ANALYZE=1 next build",
|
11 | 12 | "dev": "cross-env NODE_ENV=development node server.js",
|
|
15 | 16 | },
|
16 | 17 | "xo": {
|
17 | 18 | "parser": "babel-eslint",
|
18 |
| - "extends": [ |
19 |
| - "prettier", |
20 |
| - "prettier/react", |
21 |
| - "plugin:react/recommended" |
22 |
| - ], |
23 |
| - "env": [ |
24 |
| - "browser", |
25 |
| - "node" |
26 |
| - ], |
| 19 | + "extends": ["prettier", "prettier/react", "plugin:react/recommended"], |
| 20 | + "env": ["browser", "node"], |
27 | 21 | "rules": {
|
28 | 22 | "linebreak-style": 0,
|
29 | 23 | "react/display-name": 0,
|
30 | 24 | "react/prop-types": 0
|
31 | 25 | },
|
32 | 26 | "space:": 2,
|
33 |
| - "ignores": [ |
34 |
| - "next.config.js" |
35 |
| - ], |
| 27 | + "ignores": ["next.config.js"], |
36 | 28 | "overrides": [
|
37 | 29 | {
|
38 | 30 | "files": "**/__tests__/*.test.js",
|
39 |
| - "globals": [ |
40 |
| - "describe", |
41 |
| - "it", |
42 |
| - "expect" |
43 |
| - ] |
| 31 | + "globals": ["describe", "it", "expect"] |
44 | 32 | }
|
45 | 33 | ]
|
46 | 34 | },
|
|
52 | 40 | "git add"
|
53 | 41 | ]
|
54 | 42 | },
|
55 |
| - "keywords": [], |
56 |
| - "contributors": [ |
57 |
| - "Vinay Puppal <[email protected]> (https://www.vinaypuppal.com/)", |
58 |
| - "M-ZubairAhmed <[email protected]> (https://github.com/M-ZubairAhmed)" |
59 |
| - ], |
60 |
| - "repository": { |
61 |
| - "type": "git", |
62 |
| - "url": "https://github.com/coderplex/coderplex.git" |
63 |
| - }, |
64 |
| - "license": "BSD-3-Clause", |
65 | 43 | "dependencies": {
|
66 | 44 | "date-fns": "1.29.0",
|
67 |
| - "feathers-rest": "^1.8.0", |
68 | 45 | "isomorphic-unfetch": "2.0.0",
|
69 | 46 | "marked": "^0.3.6",
|
70 | 47 | "next": "^4.1.0",
|
|
73 | 50 | "prop-types": "^15.5.10",
|
74 | 51 | "react": "^16.0.0",
|
75 | 52 | "react-dom": "^16.0.0",
|
76 |
| - "react-ga": "^2.2.0", |
77 | 53 | "react-headroom": "^2.1.6",
|
78 | 54 | "react-icons": "^2.2.5",
|
79 | 55 | "semantic-ui-react": "^0.75.1"
|
80 | 56 | },
|
81 | 57 | "devDependencies": {
|
82 |
| - "axios": "0.17.0", |
83 | 58 | "babel-eslint": "^8.0.1",
|
84 | 59 | "babel-plugin-lodash": "^3.2.11",
|
85 | 60 | "cross-env": "^5.0.2",
|
86 |
| - "cross-spawn": "5.1.0", |
87 | 61 | "eslint-config-prettier": "^2.3.0",
|
88 | 62 | "eslint-plugin-react": "^7.1.0",
|
89 | 63 | "husky": "^0.14.3",
|
90 | 64 | "jest": "^21.2.1",
|
91 | 65 | "lint-staged": "^4.0.2",
|
92 |
| - "normalize-url": "1.9.1", |
93 |
| - "now": "8.3.11", |
94 |
| - "octonode": "0.9.1", |
95 | 66 | "opn": "^5.1.0",
|
96 | 67 | "prettier": "^1.7.0",
|
97 |
| - "travis-after-all": "1.4.5", |
98 |
| - "url-regex": "4.1.1", |
99 | 68 | "webpack-bundle-analyzer": "^2.8.3",
|
100 |
| - "xo": "^0.18.2", |
101 |
| - "yargs": "10.0.3" |
102 |
| - } |
| 69 | + "xo": "^0.18.2" |
| 70 | + }, |
| 71 | + "keywords": [], |
| 72 | + "contributors": [ |
| 73 | + "Vinay Puppal <[email protected]> (https://www.vinaypuppal.com/)", |
| 74 | + "M-ZubairAhmed <[email protected]> (https://github.com/M-ZubairAhmed)" |
| 75 | + ], |
| 76 | + "repository": { |
| 77 | + "type": "git", |
| 78 | + "url": "git+https://github.com/coderplex/coderplex.git" |
| 79 | + }, |
| 80 | + "license": "BSD-3-Clause", |
| 81 | + "bugs": { |
| 82 | + "url": "https://github.com/coderplex/coderplex/issues" |
| 83 | + }, |
| 84 | + "homepage": "https://github.com/coderplex/coderplex#readme" |
103 | 85 | }
|
0 commit comments