-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.24 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
{
"name": "superlearn",
"version": "1.0.0",
"description": "This is the frontend part from a very nice project called SuperLearn",
"main": "index.js",
"scripts": {
"start": "npm run dev:open",
"dev": "cross-env NODE_ENV=development webpack-dev-server --inline --hot",
"dev:open": "cross-env NODE_ENV=development webpack-dev-server --open --inline --hot",
"build": "npm run build:production",
"build:production": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/richterdennis/SuperLearn.git"
},
"author": "Dennis Richter",
"license": "SEE LICENSE IN LICENCE",
"bugs": {
"url": "https://github.com/richterdennis/SuperLearn/issues"
},
"homepage": "https://github.com/richterdennis/SuperLearn#readme",
"dependencies": {
"vue": "^2.5.13"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"cross-env": "^5.1.3",
"css-loader": "^0.28.9",
"file-loader": "^1.1.11",
"mo-js": "^0.288.2",
"vue-loader": "^14.1.1",
"vue-template-compiler": "^2.5.13",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1"
}
}