forked from alec-chernicki/palettable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.05 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
{
"name": "Palettable",
"version": "1.0.0",
"description": "Generate color palettes using the knowledge of millions of designers.",
"author": "Alec Ortega",
"repository": "[email protected]:alecortega/palettable.git",
"scripts": {
"deploy-client": "git subtree push --prefix=client heroku-client master",
"deploy-server": "git subtree push --prefix=server heroku-server master",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently \"npm run server\" \"npm run client\"",
"server": "node start-server.js",
"client": "node start-client.js",
"precommit": "pretty-quick --staged"
},
"license": "ISC",
"dependencies": {
"babel-eslint": "^7.2.3",
"concurrently": "^3.5.0",
"eslint": "^4.1.1",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0"
},
"devDependencies": {
"husky": "^0.14.3",
"prettier": "1.14.2",
"pretty-quick": "^1.6.0"
}
}