-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.32 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.32 KB
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
{
"name": "bookingAPI",
"version": "0.9.2",
"private": true,
"description": "A simple API to book tickets for public transport in Switzerland.",
"keywords": [
"booking",
"public-transportation",
"api",
"switzerland",
"sbb"
],
"author": "Andreas Schlapbach",
"license": "Apache-2.0",
"main": "app.js",
"dependencies": {
"angular": "^1.8.2",
"angular-animate": "^1.8.2",
"angular-aria": "^1.8.2",
"angular-jwt": "^0.1.11",
"angular-material": "^1.2.2",
"angular-messages": "^1.8.2",
"angular-route": "^1.8.2",
"body-parser": "^1.19.0",
"dateformat": "^2.0.0",
"express": "^4.17.1",
"https": "^1.0.0",
"morgan": "^1.10.0",
"ngclipboard": "^1.1.2",
"querystring": "^0.2.1",
"swagger-express-mw": "^0.7.0",
"swagger-tools": "^0.10.1",
"sync-request": "^6.0.0",
"underscore": "^1.12.1",
"uuid": "^3.4.0",
"watchify": "^3.9.0"
},
"devDependencies": {
"autotrack": "^2.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"browserify-css": "^0.10.1",
"concurrently": "^3.4.0",
"cross-env": "^5.2.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"jasmine-node": "^1.14.5",
"request": "^2.88.2",
"should": "^11.2.1",
"supertest": "^3.0.0",
"swagger": "^0.7.5"
},
"scripts": {
"serve": "concurrently \"npm run watchify\" \"npm run browsersync\"",
"browsersync": "browser-sync start --startPath='./public/app' --server --files './public/*.html, ./public/bundle.js'",
"watchify": "watchify -t browserify-css public/app/components/app.js -o public/app/bundle.js -d -t [ babelify --presets [ es2015 react ] ]",
"predev": "browserify -t browserify-css public/app/components/app.js -o public/app/bundle.js -d -t [ babelify --presets [ es2015 react ] ]",
"dev": "node app.js",
"preprod": "browserify -t browserify-css public/app/components/app.js -t [ babelify --presets [ es2015 react ] ] | uglifyjs > public/app/bundle.js",
"prod": "cross-env ENVIRONMENT=production node app.js",
"test": "mocha -u exports -R spec test/api/controllers"
}
}