-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.28 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
{
"name": "lms",
"version": "1.0.0",
"description": "Learning management system",
"author": {
"name": "Eric Tian",
"email": "tianxing0923@qq.com"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/tianxing0923/lms"
},
"engines": {
"node": ">= 7.6.0"
},
"scripts": {
"server": "cross-env NODE_ENV=development nodemon --inspect server/bin/www",
"start": "webpack-dev-server --open",
"build": "npm run build:dev",
"build:dev": "webpack --env=dev --progress --watch --colors",
"build:test": "webpack --env=test --progress --watch --colors",
"build:prod": "webpack --env=prod --progress --colors",
"clean": "rimraf dist"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"cross-env": "^5.0.1",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"image-webpack-loader": "^3.3.1",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"nodemon": "^1.11.0",
"postcss-loader": "^2.0.6",
"pug-loader": "^2.3.0",
"rimraf": "^2.6.1",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"@koa/cors": "^2.2.2",
"angular": "^1.6.5",
"angular-animate": "^1.6.5",
"angular-aria": "^1.6.5",
"angular-froala": "^2.8.4",
"angular-material": "^1.1.4",
"angular-material-data-table": "^0.10.10",
"angular-messages": "^1.6.5",
"angular-sanitize": "^1.7.3",
"angular-ui-router": "^0.4.1",
"connect-flash": "^0.1.1",
"connect-mongo": "^2.0.1",
"cross-env": "^5.0.0",
"font-awesome": "^4.7.0",
"froala-editor": "^2.8.4",
"jquery": "^3.3.1",
"koa": "^2.2.0",
"koa-bodyparser": "^3.2.0",
"koa-etag": "^3.0.0",
"koa-logger": "^2.0.1",
"koa-multer": "^1.0.1",
"koa-passport": "^3.0.0",
"koa-router": "^7.2.0",
"koa-session": "^4.0.1",
"koa-static": "^3.0.0",
"koa-views": "^6.0.2",
"material-design-icons": "^3.0.1",
"moment": "^2.18.1",
"mongoose": "^5.2.10",
"nconf": "^0.8.4",
"passport-local": "^1.0.0",
"pug": "^2.0.3"
}
}