-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 2.43 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
71
72
73
74
75
76
{
"name": "@opuscapita/react-loaders",
"version": "1.1.3",
"description": "Loaders utils",
"license": "Apache-2.0",
"scripts": {
"build": "rimraf lib && babel --copy-files --no-babelrc --presets es2015,stage-0,react --plugins transform-decorators-legacy --ignore __tests__,*.spec.js,demo src/client/components --out-dir lib",
"link-mode": "webpack --watch --config ./webpack.link.config.js",
"lint": "eslint src/client",
"lint-fix": "eslint src --fix",
"prepare": "npm run build",
"start": "nodemon --watch src/server src/server/demo/index --exec babel-node --presets es2015,stage-0,react --plugins babel-plugin-transform-decorators-legacy",
"npm-publish": "npm run build && npm publish",
"publish-release": "npm run npm-publish"
},
"main": "lib/index.js",
"files": [
"lib",
"README.md"
],
"repository": "OpusCapita/react-loaders",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"peerDependencies": {
"react": "^15.6.2 || ^16.2.0",
"react-dom": "^15.6.2 || ^16.2.0"
},
"devDependencies": {
"@opuscapita/i18n": "1.1.0",
"@opuscapita/react-showroom-client": "1.3.0-beta.6",
"@opuscapita/react-showroom-server": "1.3.0",
"autoprefixer": "6.7.6",
"babel-cli": "6.23.0",
"babel-core": "6.23.1",
"babel-eslint": "7.1.1",
"babel-loader": "6.3.2",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-object-assign": "6.8.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.23.0",
"babel-preset-stage-0": "6.22.0",
"babel-register": "6.23.0",
"compression": "1.6.2",
"css-loader": "0.26.0",
"eslint": "3.17.0",
"eslint-config-opuscapita": "1.0.7",
"eslint-plugin-react": "6.7.1",
"express": "4.13.4",
"file-loader": "0.9.0",
"http-proxy": "1.16.2",
"less": "2.7.2",
"less-loader": "2.2.3",
"nodemon": "1.9.1",
"postcss-loader": "1.3.3",
"postcss-modules": "0.6.4",
"raw-loader": "0.5.1",
"react": "15.6.2",
"react-dom": "15.6.2",
"rimraf": "2.5.2",
"source-map-loader": "0.1.6",
"style-loader": "0.13.2",
"url-loader": "0.5.8",
"webpack": "2.2.1",
"webpack-dev-middleware": "1.10.1",
"write-file-webpack-plugin": "3.4.2"
},
"dependencies": {
"@opuscapita/npm-scripts": "^2.0.2",
"core-js": "2.5.4",
"lodash": "4.17.2",
"prop-types": "15.6.0",
"scriptjs": "2.5.8"
}
}