forked from siefkenj/tafs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.9 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
{
"private": true,
"name": "tafs",
"description": "TA Feedback System",
"license": "MIT",
"author": "University of Toronto",
"version": "1.0.0",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"start": "webpack && concurrently --kill-others-on-fail \"npm run serve\" \"webpack --watch\"",
"serve": "cd dist && php -S 127.0.0.1:3000",
"travis_setup": "webpack",
"test": "mocha-webpack test/**/*.spec.js --recursive --require test/.setup"
},
"dependencies": {
"material-design-icons-iconfont": "^3.0.3",
"vue": "^2.5.11",
"vuetify": "^1.1.8"
},
"devDependencies": {
"@handsontable/vue": "^2.0.0",
"@vue/test-utils": "^1.0.0-beta.20",
"avoriaz": "^6.3.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-3": "^6.24.1",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"concurrently": "^3.5.1",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"file-loader": "^1.1.4",
"handsontable": "^4.0.0",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^11.11.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.2.0",
"mocha-webpack": "^1.1.0",
"prettier": "1.12.1",
"survey-vue": "^1.0.30",
"uglifyjs-webpack-plugin": "^1.2.7",
"vue-loader": "^13.0.5",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.4.4",
"webpack": "^3.12.0",
"webpack-dev-server": "^2.9.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"prettier": {
"tabWidth": 4,
"arrowParens": "always"
}
}