-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 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
70
71
{
"name": "octon",
"private": true,
"scripts": {
"dev": "concurrently \"tsc --watch\" \"nodemon -r dotenv/config build/index.js --watch build\"",
"build": "npm run build-server && npm run build-client",
"build-client": "next build ./client",
"build-server": "tsc",
"start": "NODE_ENV=production node build/index.js",
"format-client": "prettier-eslint --write \"client/**/*.js\"",
"format-server": "prettier --single-quote --trailing-comma es5 --write \"server/**/*.ts\"",
"format": "npm run format-client && npm run format-server",
"lint": "eslint client && tslint server/**/*.ts client/**/*.tsx",
"test": "npm run lint && npm run build"
},
"license": "MIT",
"dependencies": {
"body-parser": "^1.17.2",
"classnames": "^2.2.5",
"clipboard-js": "^0.3.5",
"cookie-parser": "^1.4.3",
"date-fns": "^1.28.5",
"dotenv": "^4.0.0",
"emailjs": "^1.0.11",
"express": "^4.15.3",
"feed": "^1.1.0",
"graphql-request": "^1.3.2",
"graphql-tag": "^2.4.2",
"handlebars": "^4.0.10",
"html-to-text": "^3.3.0",
"isomorphic-fetch": "^2.2.1",
"js-cookie": "^2.1.4",
"lodash": "^4.17.4",
"marked": "^0.3.6",
"material-ui": "v1.0.0-alpha.21",
"material-ui-icons": "^1.0.0-alpha.19",
"mjml": "^3.3.3",
"next": "3.0.1-beta.16",
"node-schedule": "^1.2.3",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-apollo": "^1.4.3",
"react-dom": "^15.6.1",
"recompose": "^0.24.0",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"styled-components": "^2.1.1",
"timeago-react": "^1.2.2",
"winston": "^2.3.1",
"xml2js": "^0.4.17"
},
"devDependencies": {
"@types/express": "^4.0.36",
"@types/node-schedule": "^1.2.0",
"@types/react": "^15.0.38",
"@types/xml2js": "^0.4.0",
"babel-eslint": "^7.2.3",
"concurrently": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"prettier": "^1.5.3",
"prettier-eslint-cli": "^4.1.1",
"tslint": "^5.5.0",
"tslint-config-prettier": "^1.1.0",
"tslint-react": "^3.0.0",
"typescript": "^2.4.1"
}
}