-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
106 lines (106 loc) · 3.43 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "art-c",
"version": "1.1.1",
"description": "Art-C is a global-local art market, spotlighting local artists to both customers and other artists alike",
"main": "server.js",
"engines": {
"node": "4.4.7"
},
"directories": {
"test": "test"
},
"scripts": {
"watch": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot",
"build": "./node_modules/webpack/bin/webpack.js",
"build-watch": "./node_modules/webpack/bin/webpack.js -w",
"frontend-test": "./node_modules/karma/bin/karma start --single-run",
"test-watch": "./node_modules/karma/bin/karma start",
"start": "node server.js",
"start-debug": "DEBUG='art-c*' npm start",
"start-watch": "DEBUG='art-c*' ./node_modules/nodemon/bin/nodemon.js server.js",
"backend-test": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
"test": "npm run frontend-test && npm run backend-test",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"lint": "./node_modules/eslint/bin/eslint.js .",
"test-debug": "DEBUG='art-c*' ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
"heroku-postbuild": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loomnugget/art-c.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/loomnugget/art-c/issues"
},
"homepage": "https://github.com/loomnugget/art-c#readme",
"dependencies": {
"angular": "^1.5.8",
"angular-animate": "^1.5.8",
"angular-route": "^1.5.8",
"angular-touch": "^1.5.8",
"angular-ui-bootstrap": "^2.2.0",
"angular-ui-router": "^0.3.1",
"aws-sdk": "^2.6.6",
"aws-sdk-mock": "1.5.0",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"bcrypt": "^0.8.7",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"bootstrap-sass": "^3.3.7",
"bootstrap-social": "^5.0.0",
"camelcase": "^3.0.0",
"clean-webpack-plugin": "^0.1.13",
"cors": "^2.8.1",
"crypto": "0.0.3",
"css-loader": "^0.25.0",
"debug": "^2.2.0",
"del": "^2.2.2",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"font-awesome": "^4.6.3",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.22.0",
"http-errors": "^1.5.0",
"istanbul": "^0.4.5",
"jsonwebtoken": "^7.1.9",
"lorem-ipsum": "^1.0.3",
"mongoose": "^4.6.2",
"morgan": "^1.7.0",
"multer": "^1.2.0",
"ng-file-upload": "^12.2.13",
"node-sass": "^3.10.1",
"pascalcase": "^0.1.1",
"resolve-url-loader": "^1.6.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"superagent": "^2.3.0",
"ui-router": "^1.0.0-alpha.3",
"url-loader": "^0.5.7",
"webpack": "^1.13.2"
},
"devDependencies": {
"angular-mocks": "^1.5.8",
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"eslint": "^3.7.1",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-mocha": "^3.0.1",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^1.8.0",
"mocha": "^3.1.1",
"ng-file-upload": "^12.2.13",
"nodemon": "^1.11.0",
"validator": "^6.0.0",
"webpack-dev-server": "^1.16.2"
}
}