-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 2.22 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
{
"name": "my-react-app-starter",
"version": "1.1.0",
"private": true,
"description": "create-react-app based project with a few pre-configured / installed features such as eslint or prettier",
"keywords": [
"React",
"create-react-app",
"eslint",
"config-airbnb",
"prettier"
],
"author": "Christophe Rosset <[email protected]> (http://labs.topheman.com/)",
"repository": {
"type": "git",
"url": "https://github.com/topheman/my-react-app-starter.git"
},
"bugs": {
"url": "https://github.com/topheman/my-react-app-starter/issues"
},
"license": "MIT",
"dependencies": {
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-scripts": "1.1.5"
},
"scripts": {
"start": "react-scripts --require ./bin/expand-metadatas.js start",
"build": "react-scripts --require ./bin/expand-metadatas.js build",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"test": "npm run test:unit",
"test:unit": "cross-env CI=true npm run test:unit:watch",
"test:unit:watch": "react-scripts --require ./bin/expand-metadatas.js test --env=jsdom",
"test:precommit": "npm test",
"test:travis": "npm test",
"test:travis:pr": "echo 'Travis PRs do not have access to env vars, run your tests according to that' && npm test",
"eject": "react-scripts eject",
"lint": "npx eslint .",
"generate-changelog": "./bin/generate-changelog.js",
"pretty": "npx prettier --write '**/*.{js,jsx,json,css,scss}'",
"precommit": "lint-staged && npm run lint && npm run test:precommit",
"serve": "npx serve --no-clipboard --listen 5000 build"
},
"devDependencies": {
"commander": "^2.15.1",
"cross-env": "^5.1.5",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-cypress": "^2.0.1",
"eslint-plugin-prettier": "^2.6.2",
"generate-changelog": "^1.7.1",
"gh-pages": "^1.2.0",
"git-rev-sync": "^1.12.0",
"github-url-from-git": "^1.5.0",
"husky": "^0.14.3",
"lint-staged": "^7.1.2",
"moment": "^2.22.1",
"prettier": "^1.14.2",
"serve": "^10.0.0"
},
"lint-staged": {
"**/*.{js,jsx,json,css,scss}": [
"prettier --write",
"git add"
]
},
"homepage": "."
}