-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "groupshuffle",
"version": "1.0.0",
"description": "Create evened out groups",
"main": "js/index.js",
"scripts": {
"test": "mocha tests --recursive",
"style": "eslint src",
"watch": "webpack --config webpack.dev.js --watch --progress",
"build": "webpack --config webpack.prod.js --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juliusse/groupCreator.git"
},
"author": "Julius Seltenheim",
"license": "MIT",
"bugs": {
"url": "https://github.com/juliusse/groupCreator/issues"
},
"homepage": "https://github.com/juliusse/groupCreator#readme",
"dependencies": {
"bootstrap": "^3.3.7",
"codemirror": "^5.32.0",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-codemirror": "^1.0.0",
"react-dom": "^16.2.0",
"react-select": "^1.1.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"eslint": "^4.12.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"file-loader": "^1.1.5",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"style-loader": "^0.19.0",
"svg-loader": "0.0.2",
"uglifyjs-webpack-plugin": "^1.1.2",
"url-loader": "^0.6.2",
"webpack": "^3.9.1",
"webpack-merge": "^4.1.1"
}
}