-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 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
{
"name": "react-state-decorator",
"version": "0.0.1",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"dev": "webpack-dev-server --hot --inline",
"dev-ts": "webpack-dev-server --hot --inline --config webpack.ts.config.js",
"test": "mocha tests/unit-tests --compilers js:babel-core/register",
"build": "gulp && NODE_ENV=production webpack && NODE_ENV=production webpack --config webpack.ts.config.babel.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Polvista/react-state-decorator.git"
},
"keywords": [
"React",
"Mobx",
"setState",
"js",
"javascript",
"decorator",
"decorators"
],
"author": "Alex Sokolov",
"license": "MIT",
"bugs": {
"url": "https://github.com/Polvista/react-state-decorator/issues"
},
"homepage": "https://github.com/Polvista/react-state-decorator#readme",
"devDependencies": {
"@types/react": "^15.0.11",
"@types/react-dom": "^0.14.23",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-1": "^6.22.0",
"chai": "^3.5.0",
"copy-webpack-plugin": "^4.0.1",
"gulp": "^3.9.1",
"gulp-rollup": "^2.11.0",
"html-webpack-plugin": "^2.28.0",
"mobx": "^3.1.0",
"mobx-react": "^4.1.0",
"mocha": "^3.2.0",
"path": "^0.12.7",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-transform-hmr": "^1.0.4",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.7.1",
"ts-loader": "^2.0.0",
"typescript": "^2.1.6",
"uglify-js": "^2.7.5",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0",
"webpack-merge": "^3.0.0"
}
}