-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.97 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
{
"name": "task-editor",
"version": "0.0.0",
"description": "task-editor",
"main": "server/bin/server.js",
"scripts": {
"dev": "npm-run-all --parallel dev:build dev:start",
"dev:build": "webpack --watch --progress --colors",
"dev:start": "cd server && nodemon server.js",
"build": "NODE_ENV=production webpack -p --progress --colors",
"start": "cd server && node server.js"
},
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.3",
"bootstrap": "^3.4.1",
"cheerio": "^1.0.0-rc.3",
"clone": "^2.1.2",
"deepmerge": "^3.3.0",
"easymde": "^2.5.1",
"ejs": "^2.6.1",
"express": "^4.16.4",
"express-fileupload": "^0.4.0",
"isbinaryfile": "^4.0.0",
"jquery": "^3.4.1",
"jquery-ui-dist": "^1.12.1",
"jschannel": "^1.0.2",
"json-editor": "^0.7.28",
"json-loader": "^0.5.7",
"mime-types": "^2.1.24",
"node-env-file": "^0.1.8",
"react": "^15.6.2",
"react-bootstrap": "^0.32.4",
"react-dom": "^15.6.2",
"react-redux": "^5.1.1",
"redux": "^3.5.2",
"redux-saga": "^0.16.2",
"shelljs": "^0.8.3",
"showdown": "^1.9.0",
"sortablejs": "^1.9.0",
"tinymce": "^4.7.9",
"tosource": "^1.0.0",
"util.promisify": "^1.0.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"autoprefixer": "^9.5.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.5.0",
"browserslist": "^4.6.0",
"css-loader": "^0.28.11",
"file-loader": "^0.11.2",
"node-sass": "^4.11.0",
"nodemon": "^1.18.11",
"npm-run-all": "^4.1.5",
"postcss-loader": "^3.0.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.12.0"
},
"repository": {
"type": "git",
"url": "git://github.com/France-ioi/task-editor.git"
},
"browserslist": [
"defaults"
]
}