-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 3.2 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
83
84
85
{
"name": "modul",
"version": "0.1.8-2",
"description": "Banc d'essai pour l'application démo MODUL.",
"author": "Martin Simard <[email protected]>",
"private": false,
"scripts": {
"clean": "rimraf dist",
"dev": "webpack-dev-server --config conf/webpack.config.js --content-base src --colors --port 8082 --open --history-api-fallback",
"build": "webpack --config conf/webpack.config.js --colors --optimize-minimize",
"prod": "http-server dist -p 8082 -g -o",
"unit": "karma start conf/karma.conf.js --browsers PhantomJS --single-run",
"unitall": "karma start conf/karma.conf.js --single-run",
"e2e": "node tests/e2e/index.js",
"test": "npm run unitall && npm run e2e",
"tslint": "tslint -c conf/tslint.json -e 'src/**/*.d.ts' -e 'tests/unit/**/*.d.ts' -s node_modules/custom-tslint-formatters/formatters -t grouped 'src/**/*.ts' 'tests/unit/**/*.ts' 'tests/e2e/*.ts'",
"stylelint": "stylelint \"src/**/*.css\" \"src/**/*.scss\" --config conf/stylelint.json",
"print_version_win": "echo %npm_package_version%",
"print_version_nx": "echo $npm_package_version"
},
"dependencies": {
"vue": "^2.3.2",
"vue-router": "^2.5.3",
"es6-promise": "^4.1.0"
},
"devDependencies": {
"@types/node": "^7.0.16",
"awesome-typescript-loader": "^3.1.3",
"axios": "^0.16.1",
"compression-webpack-plugin": "^0.4.0",
"css-loader": "^0.28.1",
"html-webpack-plugin": "^2.28.0",
"http-server": "^0.10.0",
"node-sass": "^4.5.2",
"postcss-loader": "^1.3.3",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.17.0",
"typescript": "^2.3.2",
"uglifyjs-webpack-plugin": "^0.4.3",
"uglify-js": "^2.8.22",
"vue-class-component": "^5.0.1",
"vue-property-decorator": "^5.0.1",
"vue-template-compiler": "^2.3.2",
"vue-template-loader": "^0.3.1",
"vuex": "^2.3.1",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5",
"custom-tslint-formatters": "^2.1.0",
"tslint": "^5.1.0",
"tslint-config-standard": "^5.0.2",
"tslint-loader": "^3.5.3",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0",
"stylelint-scss": "^1.4.4",
"stylelint-webpack-plugin": "^0.7.0",
"@types/jasmine": "^2.5.47",
"jasmine-core": "^2.4.1",
"karma": "^1.4.1",
"karma-chrome-launcher": "^2.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^1.0.2",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^2.0.2",
"chromedriver": "^2.27.2",
"nightwatch": "^0.9.12",
"selenium-server": "^3.0.1",
"modul-components": "^0.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ulaval/vuejs-typescript-template.git"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
],
"license": "Apache-2.0"
}