forked from atlassian/nucleus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·154 lines (154 loc) · 5.42 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "nucleus-server",
"version": "1.1.3",
"description": "Nucleus update server",
"main": "lib/index.js",
"bin": {
"nucleus": "./lib/index.js"
},
"scripts": {
"build:server": "tsc && rm -rf lib/__spec__ lib/**/__spec__",
"build:fe:dev": "webpack --config webpack.config.js",
"build:fe:prod": "webpack --config webpack.production.config.js",
"clean": "rm -rf lib && rm -rf public_out",
"commit": "git-cz",
"dev": "concurrently --raw \"npm run start:fe\" \"npm run start:server:dev\" \"npm run start:static\"",
"lint": "tslint -c tslint.json -p tsconfig.json --type-check && tslint -c tslint.json -p tsconfig.public.json --type-check",
"prepublishOnly": "npm run clean && npm run lint && npm run build:server && npm run build:fe:prod",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m \"updated CHANGELOG.md\" && npm version patch && git push && git push --tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m \"updated CHANGELOG.md\" && npm version minor && git push && git push --tags",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m \"updated CHANGELOG.md\" && npm version major && git push && git push --tags",
"start": "npm run start:server:prod",
"start:fe": "webpack-dev-server --progress --profile --colors --quiet --open",
"start:server:dev": "nodemon --watch src --exec \"npm run build:server && cross-env DEBUG=nucleus* npm run start:server:prod\" -e ts",
"start:server:prod": "node lib/index.js",
"start:static": "make-dir .files && serve .files --port 9999 --silent",
"test": "mocha --compilers ts:ts-node/register src/__spec__/rest.ts src/**/__spec__/*_spec.ts src/**/**/__spec__/*_spec.ts"
},
"author": "Samuel Attard",
"license": "Apache-2.0",
"dependencies": {
"aws-sdk": "^2.119.0",
"body-parser": "^1.17.2",
"child-process-promise": "^2.2.1",
"colors": "^1.2.5",
"compression": "^1.7.1",
"connect-redis": "^3.3.2",
"debug": "^2.6.8",
"express": "^4.15.3",
"express-session": "^1.15.3",
"fs-extra": "^3.0.1",
"hat": "^0.0.3",
"is-png": "^1.1.0",
"multer": "^1.3.0",
"mysql2": "^1.4.2",
"node-fetch": "^1.7.3",
"node-rsa": "^0.4.2",
"passport": "^0.3.2",
"passport-github": "^1.1.0",
"passport-http": "^0.3.0",
"passport-openid": "^0.4.0",
"pg": "^7.3.0",
"pg-hstore": "^2.3.2",
"pify": "^3.0.0",
"reflect-metadata": "^0.1.10",
"semver": "^5.4.1",
"sequelize": "^4.11.1",
"sequelize-typescript": "^0.5.0",
"sqlite3": "^3.1.12",
"tedious": "^2.0.0",
"to-ico": "^1.1.5"
},
"devDependencies": {
"@atlaskit/avatar": "^4.0.5",
"@atlaskit/banner": "^6.1.2",
"@atlaskit/button": "^5.4.0",
"@atlaskit/css-reset": "^1.1.4",
"@atlaskit/droplist": "^4.0.1",
"@atlaskit/field-base": "^8.1.1",
"@atlaskit/field-text": "^4.0.1",
"@atlaskit/icon": "^6.6.0",
"@atlaskit/modal-dialog": "^2.6.0",
"@atlaskit/multi-select": "^7.1.3",
"@atlaskit/navigation": "^13.0.2",
"@atlaskit/spinner": "^2.2.3",
"@atlaskit/tabs": "^4.0.0",
"@atlaskit/tooltip": "^6.2.0",
"@navjobs/upload": "^3.1.3",
"@types/body-parser": "^1.16.3",
"@types/chai": "^4.0.4",
"@types/chai-http": "^3.0.4",
"@types/compression": "^0.0.34",
"@types/connect-redis": "^0.0.6",
"@types/debug": "0.0.29",
"@types/express": "^4.0.35",
"@types/express-session": "^1.15.0",
"@types/fs-extra": "^3.0.2",
"@types/mocha": "^2.2.43",
"@types/multer": "^1.3.6",
"@types/node": "^7.0.22",
"@types/node-fetch": "^1.6.7",
"@types/passport": "^0.3.3",
"@types/passport-github": "^1.1.0",
"@types/passport-http": "^0.3.2",
"@types/pify": "0.0.28",
"@types/react": "^16.0.20",
"@types/react-dom": "^16.0.2",
"@types/react-hot-loader": "^3.0.1",
"@types/react-redux": "^4.4.41",
"@types/react-router": "^2.0.0",
"@types/redux": "^3.6.0",
"@types/semver": "^5.4.0",
"@types/sinon": "^2.3.5",
"@types/webpack-env": "^1.13.0",
"awesome-typescript-loader": "^3.1.3",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"commitizen": "^2.9.6",
"concurrently": "^3.5.0",
"cross-env": "^5.0.0",
"css-loader": "^0.28.4",
"cz-customizable": "^5.2.0",
"extract-text-webpack-plugin": "^2.1.0",
"favicons-webpack-plugin": "^0.0.7",
"file-loader": "^0.11.1",
"generate-changelog": "^1.6.0",
"highlight.js": "^9.12.0",
"html-webpack-plugin": "^2.28.0",
"make-dir-cli": "^1.0.0",
"mocha": "^3.5.3",
"node-sass": "^4.5.3",
"nodemon": "^1.11.0",
"postcss-loader": "^2.0.5",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-hot-loader": "3.0.0-beta.7",
"react-redux": "^5.0.5",
"react-router": "^2.6.0",
"redux": "^3.6.0",
"sass-loader": "^6.0.5",
"serve": "^6.1.0",
"serve-handler": "^3.2.2",
"sinon": "^4.0.0",
"style-loader": "^0.18.1",
"styled-components": "1.4.6",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"tslint-config-airbnb": "^5.3.0",
"typescript": "^3.1.6",
"url-loader": "^0.5.8",
"webpack": "^2.6.1",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-dashboard": "^0.4.0",
"webpack-dev-server": "^2.4.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz.js"
}
}
}