This repository has been archived by the owner on Mar 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
129 lines (129 loc) · 3.39 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "coderplex-app",
"version": "1.0.0",
"description": "We are on a mission to improve the state of tech in India",
"main": "index.js",
"scripts": {
"test": "xo",
"lint": "prettier 'utils/**/*.js' 'components/**/*.js' 'pages/**/*.js' 'lib/**/*.js' 'hocs/**/*.js' '*.js' '*.json' --write && xo && markdownlint .",
"precommit": "lint-staged",
"analyze": "cross-env ANALYZE=1 next build",
"dev": "cross-env NODE_ENV=development node server.js",
"start": "cross-env NODE_ENV=production next start",
"build": "next build",
"export": "cross-env NODE_ENV=production yarn build && next export",
"add-contributor": "all-contributors add",
"generate-contributors": "all-contributors generate"
},
"xo": {
"parser": "babel-eslint",
"extends": [
"prettier",
"prettier/react",
"plugin:react/recommended"
],
"env": [
"browser",
"node"
],
"rules": {
"linebreak-style": 0,
"react/display-name": 0,
"react/prop-types": 0,
"react/no-unescaped-entities": 0
},
"space:": 2,
"ignores": [
"next.config.js"
],
"overrides": [
{
"files": "**/__tests__/*.test.js",
"globals": [
"describe",
"it",
"expect"
]
}
]
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote --print-width=120 --trailing-comma=es5 --jsx-bracket-same-line",
"xo",
"jest --findRelatedTests",
"git add"
],
"**/*.md": [
"prettier",
"markdownlint",
"git add"
],
".github/CONTRIBUTING.md": [
"doctoc",
"prettier",
"git add"
]
},
"dependencies": {
"babel-plugin-emotion": "9.2.11",
"date-fns": "1.30.1",
"emotion": "9.2.12",
"emotion-server": "9.2.12",
"get-port": "5.1.1",
"grid-styled": "5.0.2",
"isomorphic-unfetch": "3.1.0",
"lodash.take": "4.1.1",
"marked": "0.8.2",
"next": "8.1.0",
"nprogress": "0.2.0",
"path-match": "1.2.4",
"prop-types": "15.7.2",
"react": "16.11.0",
"react-content-loader": "4.3.4",
"react-dom": "16.11.0",
"react-emotion": "9.2.12",
"react-event-timeline": "1.6.3",
"react-headroom": "2.2.8",
"react-icons": "2.2.7",
"styled-system": "3.2.1"
},
"devDependencies": {
"all-contributors-cli": "6.9.3",
"babel-eslint": "10.1.0",
"babel-plugin-lodash": "3.3.4",
"cross-env": "5.2.1",
"doctoc": "1.4.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"enzyme-to-json": "3.6.1",
"eslint-config-prettier": "6.5.0",
"eslint-plugin-react": "7.22.0",
"husky": "3.0.9",
"jest": "24.9.0",
"lint-staged": "8.2.1",
"markdownlint-cli": "0.26.0",
"opn": "5.5.0",
"prettier": "1.18.2",
"raf": "3.4.1",
"react-test-renderer": "16.11.0",
"typescript": "3.6.4",
"typescript-styled-plugin": "0.15.0",
"webpack-bundle-analyzer": "3.9.0",
"xo": "0.21.1"
},
"keywords": [],
"contributors": [
"Vinay Puppal <me@vinaypuppal.com> (https://www.vinaypuppal.com/)",
"M-ZubairAhmed <ahmedzubari216@gmail.com> (https://github.com/M-ZubairAhmed)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/coderplex/coderplex.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/coderplex/coderplex/issues"
},
"homepage": "https://coderplex.org"
}