-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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
{
"name": "mobx-react-starter",
"version": "0.0.1",
"description": "Starter Package for upcomming Mobx React Tutorial",
"main": "index.js",
"repository": "[email protected]:orlando-paredes-hamsho/mobx-react-starter.git",
"scripts": {
"build": "webpack --config webpack.config.js ",
"start": "webpack-dev-server --config webpack.config.js --hot --inline",
"test": "mocha --require babel-core/register ./test/setup.js --recursive ./test/**/*.test.js",
"test:watch": "npm run test -- --watch",
"lint": "eslint ./src"
},
"pre-commit": [
"lint"
],
"pre-push": [
"lint",
"test"
],
"author": "Orlando Paredes Hamsho",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.4.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"cheerio": "^0.22.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^3.17.1",
"eslint-plugin-react": "^6.10.0",
"jsdom": "9.12.0",
"mocha": "^6.2.0",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
},
"dependencies": {
"axios": "^0.19.0",
"babel-preset-stage-1": "^6.22.0",
"mobx": "^5.13.0",
"mobx-react": "^6.1.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router": "^4.0.0"
}
}