-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.53 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
{
"name": "pdxnow",
"version": "0.1.0",
"private": true,
"author": "Christian Danielsen",
"description": "A place-based snapshot app",
"engines": {
"node": ">8.0.0",
"npm": ">5.0.0"
},
"scripts": {
"start:dev": "concurrently -n \"DEV_SERVER,API_SERVER\" -c \"bgBlue.bold,bgMagenta.bold\" \"react-scripts start\" \"nodemon server.js\"",
"startz": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"test:ci": "snyk test && cross-env CI=true react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"prettify": "prettier --write",
"snyk": "snyk",
"start": "cross-env NODE_ENV=production node server.js"
},
"dependencies": {
"ajv": "6.5.4",
"cross-env": "5.2.0",
"dotenv": "6.0.0",
"express": "4.16.3",
"heroku-ssl-redirect": "0.0.4",
"lodash.shuffle": "4.2.0",
"morgan": "1.9.1",
"react": "16.5.2",
"react-dom": "16.4.2",
"react-feather": "1.1.3",
"react-scripts": "1.1.5",
"react-twitter-widgets": "1.7.1",
"request-promise": "4.2.2",
"semantic-ui-css": "2.4.0",
"semantic-ui-react": "0.82.5"
},
"devDependencies": {
"concurrently": "4.0.0",
"husky": "1.0.0",
"lint-staged": "7.3.0",
"nodemon": "1.18.4",
"prettier": "1.14.3",
"snyk": "1.99.0"
},
"lint-staged": {
"*.{js,jsx,json,css}": [
"npm run prettify --",
"git add"
]
},
"proxy": "http://localhost:5001",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}