-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.58 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
{
"name": "brulee",
"private": true,
"dependencies": {
"angular": "^1.6.0",
"angular-animate": "^1.6.0",
"angular-ui-bootstrap": "^0.14.3",
"angular-ui-router": "^0.3.1",
"body-parser": "^1.18.3",
"bootstrap": "3.2.0",
"cors": "^2.8.5",
"express": "^4.12.3",
"font-awesome": "^4.7.0",
"js-data": "^2.9.0",
"js-data-angular": "^3.2.1",
"knex": "^0.16.3",
"lodash": "^4.2.1",
"moment": "^2.24.0",
"node-fetch": "^2.3.0",
"pg": "^7.8.0",
"sql-template-strings": "^2.2.2"
},
"devDependencies": {
"@types/bluebird": "^3.5.26",
"@types/express": "^4.16.1",
"@types/lodash": "^4.14.123",
"@types/node": "^11.12.2",
"@types/pg": "^7.4.14",
"babel-core": "^6.5.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.3.13",
"chai": "^4.2.0",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^2.0.0-beta",
"file-loader": "^0.10.0",
"gulp": "^3.9.0",
"gulp-cache": "^0.2.10",
"gulp-eslint": "^3.0.1",
"gulp-imagemin": "^2.3.0",
"gulp-load-plugins": "^0.10.0",
"gulp-plumber": "^1.0.1",
"gulp-util": "^3.0.6",
"gulp-watch": "^4.2.4",
"html-webpack-harddisk-plugin": "^0.1.0",
"html-webpack-plugin": "^2.28.0",
"imports-loader": "^0.7.0",
"jasmine-core": "^2.3.4",
"karma": "^0.13.11",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"karma-webpack": "^1.7.0",
"lazypipe": "^0.2.4",
"mocha": "^6.0.2",
"ng-annotate-loader": "~0.1.0",
"node-sass": "^4.5.0",
"null-loader": "^0.1.1",
"opn": "^5.4.0",
"phantomjs": "^1.9.19",
"postcss-loader": "^1.3.1",
"prettier": "^1.16.4",
"raw-loader": "^0.5.1",
"rimraf": "^2.4.0",
"run-sequence": "^1.1.1",
"sass-loader": "^6.0.2",
"style-loader": "^0.13.1",
"supertest": "^4.0.2",
"typescript": "^3.3.3333",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1",
"webpack-stream": "^3.2.0"
},
"engines": {
"node": "^10.15.2"
},
"scripts": {
"build": "npm run build:api && npm run build:web && npm run build:react",
"build:api": "tsc",
"build:web": "gulp build",
"build:react": "cd react_app; SKIP_PREFLIGHT_CHECK=true npm run build; cd ..",
"lint:api:fix": "npx prettier --single-quote --parser typescript --write \"api/src/**\"",
"lint:react:fix": "npx prettier --single-quote --write \"react_app/src/**\"",
"lint:fix": "npm run lint:api:fix && npm run lint:react:fix",
"postinstall": "cd react_app; npm install; cd ..",
"test": "gulp test"
}
}