-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.49 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
{
"name": "evernote-random",
"version": "0.5.0",
"private": true,
"dependencies": {
"body-parser": "1.18.3",
"bowser": "^2.0.0-alpha.2",
"cheerio": "0.22.0",
"classnames": "2.2.6",
"concurrently": "3.6.1",
"cookie-session": "1.3.2",
"create-react-app": "1.5.2",
"debug": "3.1.0",
"enml-js": "0.1.3",
"evernote": "2.0.5",
"express": "4.16.3",
"helmet-csp": "2.7.1",
"is-string": "1.0.4",
"morgan": "1.9.0",
"node-cache": "4.2.0",
"nodemon": "1.18.3",
"query-string": "^5.0.0",
"react": "16.4.1",
"react-dom": "16.4.1",
"react-render-html": "0.6.0",
"react-router-dom": "4.3.1",
"rxjs": "^5.4.3"
},
"scripts": {
"start": "concurrently \"npm run client\" \"npm run server\"",
"client": "react-scripts start",
"server": "nodemon server",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"dev": "npm run start",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.{js,json}": [
"prettier --single-quote --no-semi --write",
"git add"
],
"server/**/*.{js,json}": [
"prettier --single-quote --no-semi --write",
"git add"
]
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"path": "0.12.7",
"prettier": "^1.13.7",
"react-dev-utils": "5.0.1",
"react-scripts": "1.1.4"
},
"engines": {
"node": "10.5"
},
"proxy": "http://localhost:8000"
}