-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.13 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": "stock-portfolio",
"version": "0.1.0",
"description": "sample stock portfolio project",
"main": "index.js",
"scripts": {
"build": "$(npm bin)/webpack --config ./public/webpack.conf.js --progress",
"lint": "npm run lint:ui && npm run lint:server",
"lint:ui": "$(npm bin)/eslint --ignore-path ./public/.eslintignore --config ./public/.eslintrc.json ./public/.",
"lint:server": "$(npm bin)/eslint --config ./private/src/.eslintrc.json ./private/src/.",
"prebuild": "npm run lint",
"poststart": "node private/src/index.js",
"prestart": "npm test",
"start": "npm run build",
"test": "npm run test:ui && npm run test:server",
"test:ui": "$(npm bin)/karma start ./public/karma.conf.js",
"test:server": "$(npm bin)/jasmine JASMINE_CONFIG_PATH=private/tests/jasmine.json"
},
"author": "dayne mentier",
"license": "MIT",
"dependencies": {
"@angular/router": "^0.2.0",
"angular": "^1.5.8",
"body-parser": "^1.15.2",
"bootstrap": "^4.0.0-alpha.3",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"knex": "^0.11.9",
"mysql": "^2.11.1",
"request": "^2.74.0",
"sequelize": "^3.23.6"
},
"devDependencies": {
"angular-mocks": "^1.5.8",
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"bootstrap-sass": "^3.3.7",
"bootstrap-sass-webpack": "0.0.3",
"chai": "^3.5.0",
"eslint": "^3.2.2",
"file-loader": "^0.9.0",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.21.0",
"isparta-instrumenter-loader": "^1.0.1",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"json-loader": "^0.5.4",
"karma": "^1.1.2",
"karma-coverage": "^1.1.1",
"karma-es6-shim": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.8.0",
"mock-knex": "^0.3.2",
"node-sass": "^3.8.0",
"null-loader": "^0.1.1",
"sass-loader": "^4.0.0",
"sequelize-mocking": "^0.2.0",
"sinon": "^1.17.5",
"url-loader": "^0.5.7",
"webpack": "^1.13.1"
}
}