This repository was archived by the owner on Jul 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.97 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.97 KB
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
{
"name": "React-MailMerge",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@storybook/addon-knobs": "^3.3.10",
"@storybook/addon-options": "^3.3.13",
"@storybook/react": "^3.3.10",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^22.1.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"enzyme-react-intl": "^1.4.5",
"enzyme-to-json": "^3.1.4",
"eslint": "^4.8.0",
"eslint-config-prettier": "^2.6.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.2.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.1.4",
"jest-junit": "^3.1.0",
"lint-staged": "^6.0.1",
"prettier": "^1.7.4",
"react-router-dom": "^4.2.2",
"react-test-renderer": "16",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
},
"dependencies": {
"ajv": "^6.0.1",
"format-message": "^5.2.1",
"postmark": "^1.5.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-html-email": "^3.0.0",
"react-intl": "^2.4.0"
},
"scripts": {
"storybook": "start-storybook -p 9001 -c .storybook",
"precommit": "lint-staged",
"lint": "eslint --fix --max-warnings 0 ./",
"test": "jest",
"build": "NODE_ENV=production yarn webpack"
},
"lint-staged": {
"*.{json,css}": [
"prettier --write",
"git add"
],
"*.js": [
"prettier --write",
"eslint --fix --no-ignore --max-warnings 0",
"git add"
]
}
}