forked from Formette/App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.55 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
{
"name": "Formette",
"version": "0.5.3",
"private": false,
"devDependencies": {
"babel-plugin-react-intl": "^3.0.1",
"enzyme": "^2.9.1",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"prettier": "^1.14.3",
"react-scripts": "^2.1.1",
"react-test-renderer": "^16.6.1",
"surge": "^0.20.1"
},
"dependencies": {
"@atlaskit/dropdown-menu": "^6.1.18",
"@atlaskit/dynamic-table": "^10.0.13",
"@vacom/vantage": "0.0.4",
"apollo-client": "^1.7.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"graphql-tag": "^2.4.2",
"jspdf": "^1.4.1",
"jspdf-autotable": "^2.3.5",
"logrocket": "^0.6.17",
"moment": "^2.22.2",
"polished": "^2.3.0",
"prop-types": "^15.5.10",
"react": "^16.4.1",
"react-alert": "^4.0.4",
"react-apollo": "^2.2.4",
"react-copy-to-clipboard": "^5.0.0",
"react-dom": "^16.4.1",
"react-intl": "^2.7.1",
"react-loadable": "^5.5.0",
"react-loaders-spinners": "^0.4.0",
"react-router-dom": "^4.2.2",
"react-syntax-highlighter": "^10.0.1",
"react-transition-group": "^2.5.0",
"styled-components": "^4.0.3",
"subscriptions-transport-ws": "^0.9.15",
"toastify-js": "^1.3.1"
},
"scripts": {
"start": "react-scripts start --env",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --write",
"git add"
]
}
}