-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
53 lines (53 loc) · 1.61 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
{
"name": "dejavue",
"version": "1.0.0",
"description": "Vue component and state visualizer and render time optimizer",
"main": "index.js",
"scripts": {
"start": "nodemon server.js",
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --inline --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"test": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MiCottOn/DejaVue.git"
},
"author": "Scott Schwartz, Michael Richards, Jon Kim",
"license": "MIT",
"bugs": {
"url": "https://github.com/MiCottOn/DejaVue/issues"
},
"homepage": "https://github.com/MiCottOn/DejaVue#readme",
"devDependencies": {
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"file-loader": "^0.9.0",
"vue-loader": "^10.0.0",
"vue-template-compiler": "^2.1.0",
"webpack": "^2.1.0-beta.25",
"webpack-dev-server": "^2.1.0-beta.9"
},
"dependencies": {
"css-loader": "^0.25.0",
"express": "^4.14.0",
"karma": "^1.4.1",
"karma-phantomjs-launcher": "^1.0.2",
"mocha": "^3.2.0",
"node-sass": "^4.3.0",
"nodemon": "^1.11.0",
"path": "^0.12.7",
"sass-loader": "^4.1.1",
"vue": "^2.1.8",
"vue-router": "^2.1.1",
"vue-style-loader": "^1.0.0"
}
}