-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 2.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
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
{
"name": "rental-resume.com",
"version": "3.0.1",
"description": "",
"license": "MIT",
"homepage": "https://rental-resume.com",
"repository": {
"type": "git",
"url": "https://github.com/chrisheninger/rental-resume.com"
},
"contributors": [
"Chris Heninger <[email protected]> (https://chrisheninger.com/)",
"Ryan Wiemer <[email protected]> (https://ryanwiemer.com/)"
],
"scripts": {
"build-css": "node-sass-chokidar src/scss -o src/ --include-path node_modules/bourbon/app/assets/stylesheets/ --include-path node_modules/bourbon-neat/app/assets/stylesheets/",
"watch-css": "npm run build-css && node-sass-chokidar src/scss -o src/ --include-path node_modules/bourbon/app/assets/stylesheets/ --include-path node_modules/bourbon-neat/app/assets/stylesheets/ --watch --recursive",
"start": "npm-run-all -p watch-css start-js",
"start-js": "react-scripts start",
"prettier": "prettier --write '**/*.{js,json,css,md}'",
"build": "npm run build-css && react-scripts build",
"deploy": "npm run build && gh-pages -d build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"dependencies": {
"classnames": "^2.2.6",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-input-mask": "^2.0.4",
"react-router-dom": "^4.3.1",
"store2": "^2.7.0"
},
"devDependencies": {
"babel-eslint": "9.0.0",
"eslint": "5.6.0",
"eslint-config-react-app": "^3.0.5",
"eslint-loader": "2.1.1",
"eslint-plugin-flowtype": "2.50.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.11.1",
"gh-pages": "^2.0.1",
"husky": "^1.1.3",
"lint-staged": "^7.3.0",
"node-bourbon": "^4.2.8",
"node-neat": "^1.7.2",
"node-sass": "^4.9.4",
"node-sass-chokidar": "^1.3.4",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.3",
"react-scripts": "^2.1.1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}