forked from cslms/cs-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.37 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
{
"name": "codeschool",
"version": "1.0.0",
"description": "LMS for programming courses",
"scripts": {
"build": "webpack --progress --colors --config webpack.config.js",
"test": "npm run test:unit",
"lint": "eslint --max-warnings 16 webpack.*.config.js ./client/src",
"watch": "webpack --watch"
},
"author": "Fabio Macedo Mendes",
"license": "GPL",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "6.x.x",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "6.x.x",
"babel-preset-es2016": "6.x.x",
"babel-preset-stage-2": "6.x.x",
"css-loader": "0.23.x",
"exports-loader": "^0.6.3",
"extract-text-webpack-plugin": "1.0.x",
"file-loader": "0.9.x",
"modernizr-loader": "0.0.5",
"modernizr-webpack-plugin": "1.0.x",
"polybuild": "^1.1.0",
"riot": "^2.6.2",
"riotjs-loader": "^3.0.0",
"sass-loader": "4.x.x",
"style-loader": "0.13.x",
"url-loader": "0.5.x",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1"
},
"dependencies": {
"@polymer/iron-elements": "0.0.x",
"ace": "1.3.x",
"ace-editor-builds": "^1.2.4",
"brace": "^0.8.0",
"dialog-polyfill": "^0.4.4",
"jquery": "3.1.x",
"material-design-lite": "1.1.x",
"modernizr": "3.x.x",
"node-sass": "3.x.x",
"requirejs": "^2.3.2",
"riot": "^2.6.2",
"webcomponentsjs": "^1.x.x"
}
}