-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.37 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": "recruiter",
"version": "0.2.9",
"description": "Contact manager for recruiters, made with Angular",
"main": "src/index.js",
"scripts": {
"api": "json-server --watch var/db.json",
"build": "webpack",
"eslint": "eslint src/**/*.js; exit 0",
"reset-db": "node ./scripts/resetDb",
"serve": "http-server ./build -p 8080",
"serve-watch": "webpack-dev-server --history-api-fallback --contet-base ./ --inline --progress",
"test": "npm run eslint && karma start ./test/karma.conf.js; exit 0",
"test-watch": "karma start --auto-watch --no-single-run ./test/karma.conf.js",
"test-coverage": "karma start ./test/karma.conf.js; exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/desaroger/recruiter.git"
},
"author": "Roger Fos Soler ([email protected])",
"license": "ISC",
"bugs": {
"url": "https://github.com/desaroger/recruiter/issues"
},
"homepage": "https://github.com/desaroger/recruiter#readme",
"devDependencies": {
"angular": "^1.5.8",
"angular-animate": "^1.5.8",
"angular-aria": "^1.5.8",
"angular-base64-upload": "^0.1.19",
"angular-material": "^1.1.1",
"angular-mocks": "^1.5.8",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-preset-es2015": "^6.18.0",
"clean-webpack-plugin": "^0.1.14",
"css-loader": "^0.26.0",
"eslint": "^3.10.2",
"eslint-config-google": "^0.7.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.1",
"isparta-loader": "^2.0.0",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"lodash": "^4.17.2",
"ng-annotate-webpack-plugin": "^0.1.3",
"node-sass": "^3.13.0",
"null-loader": "^0.1.1",
"phantomjs": "^2.1.7",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.13",
"pug": "^2.0.0-beta6",
"pug-loader": "^2.3.0",
"restangular": "^1.5.2",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2",
"webpack-split-by-path": "0.0.10"
},
"dependencies": {
"fs-extra": "^1.0.0",
"http-server": "^0.9.0",
"json-server": "^0.9.0"
}
}