forked from fossasia/susi.ai
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·86 lines (86 loc) · 2.43 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
85
86
{
"name": "chat.susi.ai",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.16.1",
"bootstrap": "^3.3.7",
"classnames": "^2.2.5",
"country-data": "0.0.31",
"dateformat": "^2.0.0",
"flux": "^3.1.2",
"font-awesome": "^4.7.0",
"history": "^4.6.1",
"html-entities": "^1.2.1",
"html-react-parser": "^0.3.5",
"html-to-text": "^3.3.0",
"jquery": "^3.2.1",
"keymirror": "^0.1.1",
"leaflet": "^1.0.3",
"material-ui": "^0.18.0",
"material-ui-password-field": "^1.2.0",
"material-ui-responsive-menu": "^1.1.17",
"material-ui-scrollable-tabs": "^1.0.0",
"moment": "^2.18.1",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-bootstrap": "^0.31.0",
"react-color": "^2.12.1",
"react-cookie": "^2.0.7",
"react-custom-scrollbars": "^4.1.2",
"react-dom": "^15.5.4",
"react-emojione": "^3.1.10",
"react-fittext": "^1.0.0",
"react-headroom": "^2.1.6",
"react-highlight": "^0.10.0",
"react-intl": "^2.3.0",
"react-leaflet": "^1.1.6",
"react-linkify": "^0.2.1",
"react-loading-animation": "^1.3.0",
"react-modal": "^2.2.2",
"react-render-html": "^0.5.0",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-share": "^1.15.1",
"react-slick": "^0.14.11",
"react-swipeable-views": "^0.12.5",
"react-tap-event-plugin": "^2.0.1",
"react-text-highlight": "^0.2.0",
"react-textarea-autosize": "^5.1.0",
"react-url-query": "^1.1.4",
"surge": "^0.19.0",
"universal-cookie": "^2.0.8",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"enzyme": "^2.8.2",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-jsx": "0.0.2",
"eslint-plugin-react": "^7.0.1",
"gh-pages": "^1.0.0",
"react-scripts": "0.9.5",
"react-test-renderer": "^15.5.4"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.1",
"react-dom": "^0.14.0 || ^15.0.1"
},
"jest": {
"setupFiles": [
"./src/setupTests.js",
"./src/node_modules/react-scripts/config/polyfills.js"
]
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"lint-js": "eslint *.js \"src/**/*.js\"",
"lint": "npm run lint-js",
"precommit": "npm run lint",
"prepush": "npm run lint",
"test": "npm run lint && react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "surge"
}
}