-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 2.25 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
{
"name": "smartlecture-client",
"private": true,
"version": "0.10.2",
"description": "An elearning system for logic and math courses.",
"repository": "https://github.com/lanoxx/masterylearning",
"license": "MIT",
"dependencies": {
"@uirouter/angularjs": "~1.0",
"angular": "~1.4",
"angular-base64": "^2.0.5",
"angular-cookies": "~1.4",
"angular-katex": "~0.9",
"angular-resource": "~1.4",
"angular-sanitize": "~1.4",
"angular-ui-bootstrap": "~2.5",
"bootstrap": "3.3.7",
"d3": "^3.5.17",
"elearning-content-fmi": "git+ssh://[email protected]:andreas-holzer/elearning-content-fmi.git#master",
"jquery": "~3.3.1",
"js-utils": "git+ssh://[email protected]:andreas-holzer/js-utils.git#master",
"katex": "^0.6.0",
"lodash": "^4.17.4",
"text-clipper": "^1.2.1",
"vis": "^4.16.1"
},
"devDependencies": {
"css-loader": "~1.0",
"file-loader": "~1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jasmine-core": "^2.4.1",
"karma": "~0.12",
"karma-chrome-launcher": "^0.1.12",
"karma-firefox-launcher": "^0.1.6",
"karma-jasmine": "^0.3.5",
"karma-junit-reporter": "^0.2.2",
"local-web-server": "^1.2",
"mini-css-extract-plugin": "^0.4.0",
"ngtemplate-loader": "^2.0.1",
"protractor": "^2.1.0",
"script-loader": "^0.7.2",
"shelljs": "^0.2.6",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.16.0",
"webpack-cli": "^2.0.15"
},
"scripts": {
"clean": "rm -rf ./dist",
"prestart": "npm run build",
"start": "ws -p 8082 -r '/api/*->http://localhost:8080/$1' -d dist",
"pretest": "npm install",
"prebuild": "npm run clean",
"build": "webpack --config webpack.prod.js",
"prerelease": "npm ci; npm run clean",
"release": "NODE_ENV='production' webpack --config webpack.prod.js -p",
"test": "karma start karma.conf.js",
"test-single-run": "karma start karma.conf.js --single-run",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "protractor e2e-tests/protractor.conf.js",
"watch": "webpack --config webpack.prod.js --watch --progress & npm run start"
}
}