This repository has been archived by the owner on Jun 22, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.77 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": "fittable-next",
"version": "1.0.0",
"description": "Timetables and schedules viewer for CTU in Prague, developed by ICT FIT CTU.",
"author": "ICT FIT CTU",
"private": true,
"scripts": {
"dev": "ream dev",
"build": "ream build",
"start": "ream start",
"unit": "jest",
"test": "npm run unit",
"lint": "eslint --ext .js,.vue src test/unit/specs",
"flow": "flow check",
"format": "eslint --fix --ext .js,.vue src test/unit/specs",
"precommit": "lint-staged",
"play": "vbuild -c play.config.js -d",
"build:play": "vbuild -c play.config.js"
},
"dependencies": {
"babel-eslint": "^7.2.1",
"nprogress": "^0.2.0",
"ream": "beta",
"vue": "^2.2.2",
"vue-router": "^2.2.0"
},
"devDependencies": {
"babel-preset-vue-app": "^1.0.0",
"eslint": "^3.18.0",
"eslint-config-standard": "^7.1.0",
"eslint-friendly-formatter": "^2.0.7",
"eslint-loader": "^1.6.1",
"eslint-plugin-html": "^2.0.0",
"eslint-plugin-jest": "^19.0.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"flow-bin": "^0.43.1",
"husky": "^0.13.3",
"jest": "^19.0.2",
"jest-vue-preprocessor": "^0.2.0",
"lint-staged": "^3.4.0",
"vbuild": "^6.24.13",
"vue-play": "^3.1.3"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue",
"jsx",
"node"
],
"modulePaths": [
"<rootDir>/src",
"<rootDir>"
],
"moduleNameMapper": {
"^vue$": "vue/dist/vue.common.js"
},
"transform": {
"^.+\\.js$": "babel-jest",
".*\\.(vue)$": "jest-vue-preprocessor"
}
}
}