-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·66 lines (66 loc) · 1.97 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": "test-vue-example",
"version": "0.0.1",
"description": "simple app for test training",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --open --inline --hot --quiet --port 8082",
"api": "nodemon --harmony ./server/server.js --port 4422",
"api:test": "nodemon --harmony ./server/server.js --port 4422",
"test:api": "NODE_ENV=test mocha --harmony --trace-deprecation --timeout 50000 $(find ./apitests/ -path '*.spec.*')",
"drivers": "awb chrome gecko standalone"
},
"author": "Potapov Dmytro",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^2.2.48",
"@types/node": "^9.6.36",
"awb": "0.7.7",
"babel-core": "^6.26.0",
"babel-loader": "^6.2.8",
"babel-plugin-provide-modules": "^1.0.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-runtime": "^6.26.0",
"chai": "^3.5.0",
"cross-env": "^3.1.3",
"css-loader": "^0.26.1",
"file-loader": "^0.9.0",
"koa-logger": "^1.3.1",
"minimist": "^1.2.0",
"mocha": "^3.5.3",
"node-sass": "^4.10.0",
"nodemon": "^1.18.6",
"operadriver": "^0.2.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"ts-node": "^5.0.0",
"typescript": "^2.7.2",
"webdriver-manager": "^11.1.1",
"webpack": "^2.7.0",
"webpack-dev-server": "^2.11.1"
},
"dependencies": {
"dns-sync": "^0.1.3",
"jsonwebtoken": "^7.4.3",
"koa-bodyparser": "^2.5.0",
"koa-cors": "0.0.16",
"koa-router": "^7.4.0",
"koa2": "^2.0.0-alpha.7",
"lodash": "^4.17.5",
"mongoose": "^4.13.11",
"process-rerun": "0.0.6",
"redux": "^3.7.2",
"redux-vue": "^0.7.1",
"rxjs": "^5.5.6",
"then-redis": "^2.0.1",
"vue": "^2.5.13",
"vue-loader": "^12.2.2",
"vue-router": "^2.7.0",
"vue-template-compiler": "^2.5.13",
"vuex": "^2.4.0"
}
}