-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
65 lines (65 loc) · 1.84 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
{
"name": "mobx-react-price-feed-mvvm-example",
"version": "1.0.0",
"description": "Mobx MVVM price feed example ",
"keywords": [
"mobx",
"react",
"reactjs",
"mvvm"
],
"homepage": "https://codesandbox.io/s/github/gaplo917/mobx-react-mvvm-example/tree/master/",
"main": "index.js",
"dependencies": {
"babel-polyfill": "^6.26.0",
"lodash": "^4.17.11",
"mobx": "^5.9.0",
"mobx-react": "^5.4.3",
"mobx-react-devtools": "^6.0.3",
"mobx-react-lite": "^1.2.0",
"mobx-utils": "^5.1.0",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-hot-loader": "^4.7.0",
"styled-components": "^4.1.3"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@hot-loader/react-dom": "^16.8.2",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.7.1",
"path": "^0.12.7",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
},
"scripts": {
"build": "babel-node ./node_modules/webpack/bin/webpack --mode production",
"start": "webpack-dev-server --hot --config ./webpack.config.js --mode development",
"test": "jest --coverage"
},
"jest": {
"setupFilesAfterEnv": [
"./src/__tests__/setupTests.js"
],
"testPathIgnorePatterns": [
"./src/__tests__/setupTests.js"
]
}
}