-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.05 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
{
"name": "quick-note",
"version": "1.0.0",
"description": "Google Keep like notes application",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --mode development --hot --progress --color --port 9000 --open",
"build": "webpack -p --progress --colors",
"lint": "eslint src/*.js",
"e2e": "protractor ./e2e.config.js",
"e2e:serve": "webdriver-manager start"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/react": "^16.4.7",
"@types/react-dom": "^16.0.6",
"css-loader": "^1.0.0",
"eslint": "^5.2.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"firebase": "^5.3.0",
"font-awesome-webpack": "0.0.5-beta.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jasmine": "^3.1.0",
"jasmine-core": "^3.1.0",
"karma": "^2.0.5",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.2",
"karma-jasmine-html-reporter": "^1.2.0",
"karma-phantomjs-launcher": "^1.0.4",
"less": "^3.8.0",
"protractor": "^5.4.0",
"style-loader": "^0.21.0",
"ts-loader": "^4.4.2",
"tsd": "^0.6.5",
"typescript": "^2.9.2",
"url-loader": "^1.0.1",
"webpack": "^4.16.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"classnames": "^2.2.6",
"font-awesome": "^4.7.0",
"google-client-api": "^1.0.4",
"lodash": "^4.17.10",
"material-ui": "^0.20.1",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-avatar": "^3.1.2",
"react-contenteditable": "^2.1.0",
"react-dom": "^16.4.1",
"react-icons": "^2.2.7",
"react-materialize": "^2.3.3",
"react-onclickoutside": "^6.7.1",
"react-redux": "^5.0.7",
"react-router": "^3.2.1",
"react-router-dom": "^4.3.1",
"react-tap-event-plugin": "^3.0.3",
"redux": "^4.0.0",
"redux-saga": "^0.16.0"
}
}