forked from neos/neos-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3.09 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
77
78
79
80
81
82
83
84
85
86
87
{
"description": "Root package + shared dev dependencies for @neos-project packages, managed by lernaJS",
"license": "GNU GPLv3",
"private": true,
"scripts": {
"clear": "rm -rf packages/*/node_modules",
"postinstall": "lerna bootstrap",
"build:ui": "NEOS_BUILD_ROOT=$(pwd) webpack --progress --colors",
"build:ui:watch": "npm run build:ui -- --watch",
"build:components": "lerna run --scope @neos-project/react-ui-components build",
"build:components:watch": "lerna run --scope @neos-project/react-ui-components build:watch",
"build": "npm run build:components && npm run build:ui",
"start-storybook": "lerna run --scope @neos-project/react-ui-components start",
"coverage:generate": "lerna run coverage:generate --concurrency 1",
"coverage:publish": "lerna run coverage:publish --concurrency 1",
"test": "lerna run test --concurrency 1",
"lint": "lerna run lint --concurrency 1"
},
"devDependencies": {
"@inkdpixels/commit-analyzer": "^1.0.0",
"@inkdpixels/release-notes-generator": "^1.0.0",
"@neos-project/brand": "^1.1.0",
"@neos-project/eslint-config-neos": "^1.1.1",
"ava": "^0.18.2",
"babel-cli": "^6.8.0",
"babel-core": "^6.13.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.20.1",
"babel-plugin-webpack-alias": "^2.1.1",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"browser-env": "^2.0.12",
"check-dependencies": "^1.0.1",
"classnames": "^2.2.3",
"codeclimate-test-reporter": "^0.4.0",
"cpx": "^1.3.1",
"cross-env": "^3.0.0",
"css-loader": "^0.26.0",
"enzyme": "^2.4.1",
"eslint": "^3.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"greenkeeper-postpublish": "^1.0.0",
"imports-loader": "^0.7.0",
"json-loader": "^0.5.4",
"lerna": "2.0.0-beta.31",
"lodash.isfunction": "^3.0.8",
"lodash.isstring": "^4.0.1",
"lodash.omit": "^4.3.0",
"lolex": "^1.5.1",
"moment": "^2.14.1",
"nyc": "^10.0.0",
"object-assign": "^4.1.0",
"postcss-css-variables": "^0.6.0",
"postcss-hexrgba": "^0.2.0",
"postcss-import": "^9.0.0",
"postcss-loader": "^1.0.0",
"postcss-nested": "^1.0.0",
"react": "^15.4.0",
"react-addons-shallow-compare": "^15.4.0",
"react-addons-test-utils": "^15.4.0",
"react-broadcast": "^0.1.2",
"react-click-outside": "^2.1.0",
"react-collapse": "^2.2.2",
"react-css-themr": "^1.2.0",
"react-datetime": "^2.7.2",
"react-dom": "^15.4.0",
"react-height": "^2.0.4",
"react-motion": "^0.4.2",
"react-portal": "^3.0.0",
"react-textarea-autosize": "^4.0.0",
"redux-devtools": "^3.2.0",
"rimraf": "^2.5.4",
"semantic-release": "^6.3.2",
"sinon": "^1.17.6",
"skin-deep": "^0.16.0",
"style-loader": "^0.13.1",
"stylelint": "^7.5.0",
"watch": "^1.0.2",
"webpack": "^1.13.2",
"webpack-livereload-plugin": "^0.10.0",
"whatwg-fetch": "^2.0.0"
}
}