This repository has been archived by the owner on Jun 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
146 lines (146 loc) · 5.7 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
{
"name": "build.snapcraft.io",
"version": "1.0.0",
"description": "User interface layer for the Snapcraft Build site",
"main": "src/server/index.js",
"scripts": {
"start": "npm run migrate:latest && node ./webpack/webpack-dev-server",
"start-build": "node dist/server/",
"serve": "[ -f .env.local ] || ./setup.sh; npm run start",
"build": "./scripts/build.sh",
"build:scripts": "babel --out-dir=dist src scripts/poller.js --copy-files",
"build:vanilla-modules": "node-sass --include-path ./node_modules -o ./src/common/style/vanilla/css ./src/common/style/vanilla/",
"lint": "eslint -c .eslintrc.js '**/*.js'",
"test": "npm run test:setup-db && nyc npm run test:unit && npm run test:routes && npm run lint",
"test:setup-db": "rm -f test.sqlite3 && NODE_ENV=test npm run migrate:latest",
"test:unit": "BABEL_DISABLE_CACHE=1 HTTP_PROXY= HTTPS_PROXY= TZ=US/Pacific mocha --env=environments/test.env --recursive --require babel-core/register --require babel-polyfill --compilers js:babel-register ./test/setup.js ./test/unit/t_*.js ./test/unit/**/*",
"test:unit:watch": "BABEL_DISABLE_CACHE=1 HTTP_PROXY= HTTPS_PROXY= TZ=US/Pacific mocha --watch --env=environments/test.env --recursive --require babel-core/register --require babel-polyfill --compilers js:babel-register ./test/setup.js ./test/unit/t_*.js ./test/unit/**/*",
"test:unit:inspect": "BABEL_DISABLE_CACHE=1 HTTP_PROXY= HTTPS_PROXY= TZ=US/Pacific mocha --inspect --debug-brk --env=environments/test.env --recursive --require babel-core/register --require babel-polyfill --compilers js:babel-register ./test/setup.js ./test/unit/t_*.js ./test/unit/**/*",
"test:routes": "BABEL_DISABLE_CACHE=1 HTTP_PROXY= HTTPS_PROXY= TZ=US/Pacific mocha --env=environments/test.env --recursive --require babel-core/register --require babel-polyfill --compilers js:babel-register ./test/setup.js ./test/routes/**/*",
"migrate:latest": "knex migrate:latest",
"migrate:rollback": "knex migrate:rollback",
"shonkwrap": "shonkwrap",
"generate-badges": "node scripts/badges.js",
"poll-repositories": "node dist/scripts/poller.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/canonical-websites/build.snapcraft.io.git"
},
"contributors": [
"Bartek Szopka <[email protected]>",
"Colin Watson <[email protected]>",
"Katie Fenn <[email protected]>",
"Stephen Stewart <[email protected]>"
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/canonical-websites/build.snapcraft.io/issues"
},
"homepage": "https://github.com/canonical-websites/build.snapcraft.io#readme",
"dependencies": {
"@canonical/global-nav": "^2.0.5",
"async-lock": "^1.2.0",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.3",
"bookshelf": "^0.10.4",
"chalk": "^1.1.3",
"classnames": "^2.2.6",
"clipboard": "^1.7.1",
"connect-memcached": "^0.2.0",
"cookie-policy": "^1.0.5",
"css-modules-require-hook": "^4.0.5",
"dotenv": "^2.0.0",
"es6-promise": "^4.2.6",
"express": "^4.16.4",
"express-healthcheck": "^0.1.0",
"express-prom-bundle": "^2.2.0",
"express-session": "^1.15.6",
"express-winston": "^2.6.0",
"helmet": "^3.16.0",
"images-require-hook": "^1.1.12",
"immutable": "^3.8.2",
"ipaddr.js": "^1.9.0",
"isomorphic-fetch": "^2.2.1",
"js-yaml": "^3.13.0",
"knex": "^0.12.9",
"localforage": "^1.7.3",
"lodash.merge": "^4.6.1",
"lodash.union": "^4.6.0",
"macaroons.js": "^0.3.8",
"memcached": "^2.2.2",
"moment": "^2.24.0",
"normalize.css": "^5.0.0",
"normalizr": "^3.3.0",
"oauth": "^0.9.15",
"openid": "^2.0.6",
"parse-github-url": "^0.3.2",
"pg": "^6.4.2",
"prop-types": "^15.7.2",
"qs": "^6.6.0",
"raven": "^2.6.4",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-helmet": "^5.2.0",
"react-hot-loader": "^4.8.0",
"react-redux": "^4.4.10",
"react-router": "^3.2.1",
"react-router-redux": "^4.0.8",
"redux": "^3.7.2",
"redux-thunk": "^2.3.0",
"request": "^2.88.0",
"reselect": "^2.5.4",
"sanitize-html": "^1.20.0",
"serve-favicon": "^2.5.0",
"uuid": "^3.3.2",
"vanilla-framework": "^2.3.0",
"winston": "^2.4.4",
"winston-daily-rotate-file": "^1.7.2",
"yargs": "^6.6.0"
},
"devDependencies": {
"assets-webpack-plugin": "^3.5.0",
"autoprefixer": "^6.5.1",
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.5",
"babel-plugin-transform-es2015-destructuring": "^6.16.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"chokidar": "^1.6.1",
"css-loader": "^0.25.0",
"dotenv": "^2.0.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-15": "^1.1.1",
"eslint": "^5.2.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-mocha": "^5.1.0",
"eslint-plugin-react": "^7.10.0",
"expect": "^1.20.2",
"expect-enzyme": "^1.3.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"flux-standard-action": "^1.0.0",
"mocha": "^3.1.2",
"nock": "^9.2.2",
"node-sass": "^4.5.3",
"nyc": "^9.0.1",
"postcss-loader": "^1.0.0",
"postcss-simple-vars": "^3.0.0",
"proxyquire": "^1.7.10",
"react-test-renderer": "^15.6.2",
"redux-mock-store": "^1.2.1",
"shonkwrap": "^1.3.0",
"sinon": "^7.0.0",
"sqlite3": "^3.1.8",
"style-loader": "^0.13.1",
"supertest": "^2.0.0",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.0"
}
}