forked from canonical-web-and-design/build.snapcraft.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 5.14 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
{
"name": "build.snapcraft.io-ui",
"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/",
"build": "./scripts/build.sh",
"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",
"generate-badges": "node scripts/badges.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/canonical-ols/build.snapcraft.io-ui.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-ols/build.snapcraft.io-ui/issues"
},
"homepage": "https://github.com/canonical-ols/build.snapcraft.io-ui#readme",
"dependencies": {
"babel-polyfill": "^6.16.0",
"body-parser": "^1.15.2",
"bookshelf": "^0.10.3",
"chalk": "^1.1.3",
"classnames": "^2.2.5",
"clipboard": "^1.6.1",
"connect-memcached": "^0.2.0",
"css-modules-require-hook": "^4.0.5",
"dotenv": "^2.0.0",
"es6-promise": "^4.0.5",
"express": "^4.14.0",
"express-prom-bundle": "^2.1.0",
"express-session": "^1.14.1",
"express-winston": "^2.0.0",
"helmet": "^3.1.0",
"images-require-hook": "^1.0.3",
"immutable": "^3.8.1",
"ipaddr.js": "^1.1.1",
"isomorphic-fetch": "^2.2.1",
"js-yaml": "^3.7.0",
"knex": "^0.12.7",
"localforage": "^1.4.3",
"lodash.merge": "^4.6.0",
"lodash.union": "^4.6.0",
"macaroons.js": "^0.3.6",
"memcached": "^2.2.2",
"moment": "^2.17.1",
"normalize.css": "^5.0.0",
"normalizr": "^3.2.2",
"oauth": "^0.9.14",
"openid": "^2.0.6",
"parse-github-url": "^0.3.2",
"pg": "^6.1.2",
"qs": "^6.3.0",
"raven": "^0.12.3",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"react-helmet": "^3.1.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^4.4.6",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.6",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"request": "^2.79.0",
"reselect": "^2.5.4",
"sanitize-html": "^1.14.1",
"serve-favicon": "^2.4.0",
"uuid": "^3.0.1",
"winston": "^2.3.0",
"winston-daily-rotate-file": "^1.4.2",
"yargs": "^6.4.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-es2015": "^6.16.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": "^2.5.1",
"eslint": "^3.8.1",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-react": "^6.4.1 <6.10.1",
"expect": "^1.20.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"flux-standard-action": "^1.0.0",
"mocha": "^3.1.2",
"nock": "^9.0.2",
"nyc": "^9.0.1",
"postcss-loader": "^1.0.0",
"postcss-simple-vars": "^3.0.0",
"prompt": "^1.0.0",
"proxyquire": "^1.7.10",
"raven": "^0.12.1",
"react-addons-test-utils": "^15.4.0",
"redux-mock-store": "^1.2.1",
"sinon": "^1.17.6",
"sqlite3": "^3.1.8",
"std-mocks": "^1.0.1",
"strip-ansi": "^3.0.1",
"style-loader": "^0.13.1",
"supertest": "^2.0.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.0"
}
}