-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.98 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.98 KB
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
88
{
"name": "silk-react-components",
"version": "1.0.0",
"description": "JavaScript & React components of the silk project.",
"main": "index.js",
"scripts": {
"init": "ecc-link-dotfiles && rm .editorconfig && rm -r .gitlab",
"test": "mocha --require babel-core/register --require ./test/test_helper.js \"test/**/*.test@(.js|.jsx)\"",
"testBamboo": "mocha -R mocha-bamboo-reporter --require babel-core/register --require ./test/test_helper.js \"test/**/*@(.js|.jsx)\"",
"test:watch": "npm run test -- --watch",
"eslint-check": "eslint --print-config .eslintrc.yml && eslint --print-config .eslintrc.yml | eslint-config-prettier-check",
"lint": "node_modules/.bin/eslint '{src,silk-workbench}/**/*.{js,jsx}' --fix",
"start": "gulp",
"build": "gulp build",
"deploy": "gulp deploy",
"watch": "webpack --watch",
"webpack-build": "cross-env NODE_ENV=production webpack --config webpack.prod.config.js",
"webpack-dev-build": "cross-env NODE_ENV=development webpack --config webpack.dev.config.js",
"babel": "babel"
},
"repository": {
"type": "git",
"url": "https://github.com/silk-framework/silk.git"
},
"license": "Apache-2.0",
"private": true,
"dependencies": {
"@eccenca/gui-elements": "^5.1.1",
"@eccenca/superagent": "^1.4.1",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"classnames": "^2.2.5",
"create-react-class": "^15.6.0",
"dialog-polyfill": "0.4.4",
"ecc-messagebus": "^3.6.0",
"ecc-utils": "^1.4.0",
"jquery": "3.3.1",
"jquery-migrate": "3.0.1",
"lodash": "^4.17.4",
"mark.js": "^8.11.1",
"mdl-selectfield": "1.0.3",
"react": "^15.6.1",
"react-beautiful-dnd": "^2.5.0",
"react-dom": "^15.6.1"
},
"devDependencies": {
"@eccenca/dotfiles": "^2.3.2",
"@eccenca/gulp-tasks": "^3.15.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"chai-enzyme": "^1.0.0-beta.1",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"ecc-license-checker": "^2.5.2",
"enzyme": "^3.6.0",
"enzyme-adapter-react-15": "^1.0.6",
"eslint-plugin-jsx-a11y": "^6.1.2",
"file-loader": "^1.1.11",
"jsdom": "16.5.0",
"jsplumb": "2.5.1",
"jstree": "3.2.1",
"lorem-ipsum": "^1.0.4",
"mini-css-extract-plugin": "^0.4.0",
"mocha": "^5.2.0",
"mocha-bamboo-reporter": "^1.1.1",
"nock": "^9.0.2",
"node-sass": "^4.9.0",
"react-test-renderer": "^16.4.2",
"sass-loader": "^7.0.3",
"sass-resources-loader": "^1.3.3",
"sinon": "^7.2.2",
"style-loader": "^0.21.0",
"twbs-pagination": "^1.4.1",
"uglify-js": "^3.4.0",
"uglifyjs": "^2.4.11",
"url-loader": "^1.0.1",
"webpack": "^4.6.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.3"
}
}