-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.46 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
{
"name": "aprendac",
"version": "2.0.0",
"description": "Herramienta para el autoaprendizaje basico del lenguaje de programacion C bajo un ambiente web",
"main": "server.js",
"scripts": {
"postinstall": "typings install",
"typings": "typings",
"start:dev": "npm run dev:all && concurrently \"npm run watch:scss\" \"npm run watch:tsc\" \"lite-server -c ./app/bs-config.json\" \"nodemon ./server.js --ignore user_code_folder\" ",
"dev:all": "npm run dev:scss && npm run dev:tsc",
"dev:tsc": "tsc",
"watch:tsc": "nodemon --ext ts -x \"npm run dev:tsc\"",
"dev:scss": "node-sass --indent-type space --indent-width 4 -r assets/scss/ -o assets/css/",
"watch:scss": "nodemon --ext scss -x \"npm run dev:scss\"",
"build:all": "npm run build:tsc && npm run build:scss",
"build:tsc": "echo \"Compile and minify the ts files\"",
"build:scss": "node-sass --output-style compressed assets/scss -o assets/css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yossely/Aplicacion-Web-Para-el-Autoaprendizaje-Basico-de-Lenguaje-C.git"
},
"keywords": [
"aprenda",
"basico",
"lenguaje",
"C",
"aplicacion",
"web"
],
"author": "yossely mendoza",
"license": "MIT",
"bugs": {
"url": "https://github.com/yossely/Aplicacion-Web-Para-el-Autoaprendizaje-Basico-de-Lenguaje-C/issues"
},
"homepage": "https://github.com/yossely/Aplicacion-Web-Para-el-Autoaprendizaje-Basico-de-Lenguaje-C#readme",
"dependencies": {
"@angular/common": "2.0.0",
"@angular/compiler": "2.0.0",
"@angular/core": "2.0.0",
"@angular/forms": "2.0.0",
"@angular/http": "2.0.0",
"@angular/platform-browser": "2.0.0",
"@angular/platform-browser-dynamic": "2.0.0",
"@angular/router": "3.0.0",
"@angular/upgrade": "2.0.0",
"angular2-in-memory-web-api": "0.0.20",
"body-parser": "^1.16.0",
"bootstrap": "^3.3.6",
"buffer": "^5.0.1",
"core-js": "^2.4.1",
"cors": "^2.8.1",
"express": "^4.14.0",
"hint.css": "^2.5.0",
"intro.js": "^2.5.0",
"jsonfile": "^2.4.0",
"marked": "^0.3.6",
"nedb": "^1.8.0",
"ng2-ace-editor": "^0.1.3",
"ng2-bootstrap": "^1.1.16",
"prismjs": "^1.6.0",
"reflect-metadata": "^0.1.3",
"rxjs": "^5.2.0",
"systemjs": "0.19.27",
"zone.js": "^0.6.23"
},
"devDependencies": {
"concurrently": "^2.2.0",
"hjson": "^2.4.1",
"lite-server": "^2.2.2",
"node-sass": "^3.13.0",
"typings": "^1.3.2"
}
}