forked from fus-marcom/resource-center
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.99 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
{
"name": "resource-center",
"version": "0.1.0",
"private": true,
"homepage": "https://fus-marcom.github.io/resource-center",
"dependencies": {
"electron": "^1.6.11",
"formidable": "^1.1.1",
"gh-pages": "^1.0.0",
"material-ui": "^0.18.6",
"nodemon": "^1.11.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-masonry-component": "^5.0.7",
"react-router-dom": "^4.1.2",
"react-scripts": "^1.0.10",
"react-tap-event-plugin": "^2.0.1",
"sendgrid": "^5.2.0"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start-server": "nodemon server.js -w server.js",
"start": "npm-run-all -p watch-css start-js start-server",
"build": "npm run build-css && react-scripts build",
"test": "react-scripts test --env=jsdom",
"test-without-watch": "cross-env CI=true npm test",
"eject": "react-scripts eject",
"lint": "prettier 'src/**/*.js' 'src/components/**/*.js' '*.js' --write --single-quote --no-semi && standard --fix",
"precommit": "lint-staged && npm run test-without-watch"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"cross-env": "^5.0.1",
"husky": "^0.14.3",
"lint-staged": "^4.0.2",
"nightmare": "^2.10.0",
"nightmare-upload": "^0.1.1",
"node-fetch": "^1.7.1",
"node-sass-chokidar": "^0.0.3",
"npm-run-all": "^4.0.2",
"prettier": "^1.5.3",
"standard": "^10.0.2"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote --no-semi",
"standard --fix",
"git add"
]
},
"standard": {
"globals": [
"fetch",
"FormData",
"describe",
"it",
"beforeEach",
"expect"
],
"parser": "babel-eslint"
}
}