-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.57 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "salt",
"scripts": {
"dev": "nodemon -w src/ --exec 'npm run transpile-server && npm run dev-start'",
"transpile-server": "babel src --out-dir dist",
"dev-start": "node --trace-warnings dist/server",
"postinstall": "npm run build",
"build": "NODE_ENV=production next build && NODE_ENV=production npm run transpile-server",
"start": "NODE_ENV=production node dist/server",
"lint": "eslint --max-warnings=0 src components pages",
"test": "npm run lint && npm run cypress",
"cypress": "DEBUG='' ./cypress.sh run",
"precommit": "lint-staged && npm run lint",
"analyze": "ANALYZE=1 next build && cat .next/stats.txt",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"engines": {
"node": "8.11.3"
},
"dependencies": {
"@material-ui/core": "1.4.0",
"@sendgrid/mail": "6.3.1",
"axios": "0.18.0",
"babel-core": "7.0.0-bridge.0",
"bluebird": "3.5.1",
"braintree": "2.11.0",
"braintree-dropin-react": "0.1.0",
"braintree-web-drop-in": "1.11.0",
"circular-json": "0.5.5",
"cypress": "3.0.2",
"debug": "3.1.0",
"dotenv": "6.0.0",
"downshift": "2.0.14",
"eslint": "5.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-flowtype": "2.50.0",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-prettier": "2.6.2",
"eslint-plugin-react": "7.10.0",
"express": "4.16.3",
"isomorphic-unfetch": "2.0.0",
"jest": "23.4.1",
"jest-junit": "5.1.0",
"lodash": "4.17.10",
"moment": "2.22.2",
"mssql": "4.1.0",
"next": "6.1.1",
"nodemon": "1.18.2",
"path-match": "1.2.4",
"prettier": "1.13.7",
"prettier-eslint": "8.8.2",
"prettier-eslint-cli": "4.7.1",
"react": "16.4.1",
"react-dom": "16.4.1",
"react-safe": "1.1.1",
"regenerator-runtime": "0.12.0",
"rollbar": "2.4.2",
"route-cache": "0.4.4",
"styled-components": "3.3.3",
"webpack-bundle-analyzer": "2.13.1",
"webpack-bundle-size-analyzer": "2.7.0"
},
"lint-staged": {
"*.js": [
"prettier-eslint --write '(src|components|pages)/**/*.js'",
"git add"
]
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.42",
"@babel/core": "7.0.0-beta.42",
"@babel/runtime": "7.0.0-beta.42",
"@storybook/addon-actions": "3.4.8",
"@storybook/addon-links": "3.4.8",
"@storybook/addon-viewport": "3.4.8",
"@storybook/addons": "3.4.8",
"@storybook/react": "3.4.8",
"babel-eslint": "8.2.6",
"babel-jest": "23.4.0",
"flow-bin": "0.76.0"
}
}