-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "react-capital",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"next": "^2.0.0-beta.24",
"styled-components": "^2.0.0-1"
},
"devDependencies": {
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-prettier": "^1.0.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"lint-staged": "^3.3.0",
"pre-commit": "^1.2.2",
"prettier": "^0.16.0"
},
"scripts": {
"dev": "next app",
"build": "next build app",
"start": "next start app",
"lint": "prettier --single-quote --trailing-comma --color --write 'app/**/*.js' && eslint . --fix",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.js": "lint"
},
"pre-commit": "lint-staged",
"keywords": [],
"author": "ReactCapital Copyright (C) 2017 Atrium - Verein zur Förderung von SoftwareentwicklerInnen <[email protected]> (https://react.capital/)",
"license": "GPL-3.0"
}