-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.15 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
{
"name": "boxcharter",
"description": "An open-source web application that creates chord/lyric \"box charts\" for jamming. This is currently a work in progress; _eventually_ it will be deployed at http://boxcharter.com.",
"version": "1.0.0-alpha.1",
"author": "Bonnie Schulkin",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/flyrightsister/boxcharter.git"
},
"scripts": {
"lint": "npm run lint:client && npm run lint:server",
"lint:client": "eslint client/src/**/*.js --fix",
"lint:server": "eslint server/src/**/*.js --fix",
"postinstall": "npm run setup",
"setup": "npm run setup:client && npm run setup:server",
"setup:client": "cd client && npm run setup",
"setup:server": "cd server && npm run setup",
"test": "npm run test:server && npm run test:client",
"test:client": "cd client && npm test",
"test:server": "cd server && npm test"
},
"devDependencies": {},
"dependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0"
}
}