-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
52 lines (52 loc) · 1.46 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
{
"name": "photobook",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --config ./webpack.config.js --mode development --inline",
"build": "webpack --config ./webpack.config.js --mode production",
"test": "jest"
},
"dependencies": {
"@firebase/app-types": "^0.3.2",
"emotion": "^9.2.5",
"firebase": "^5.0.1",
"history": "^4.7.2",
"prop-types": "^15.6.2",
"react": "^16.3.0",
"react-automata": "^3.0.0",
"react-dom": "^16.3.0",
"react-dropzone": "^4.2.8",
"react-gravatar": "^2.6.3",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-transition-group": "^2.4.0",
"xstate": "^3.1.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-module-resolver": "^3.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.22.0",
"eslint": "^5.0.1",
"eslint-config-airbnb": "17.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"file-loader": "^1.1.11",
"jest": "^23.4.2",
"react-hot-loader": "^4.1.2",
"webpack": "^4.0.1",
"webpack-cli": "^3.0.6",
"webpack-dev-server": "^3.1.11"
},
"jest": {
"testURL": "http://localhost"
}
}