forked from cloud-gov/pages-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 4.45 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
{
"name": "federalist",
"private": true,
"version": "0.0.0",
"description": "",
"keywords": [],
"dependencies": {
"aws-sdk": "^2.1.36",
"body-parser": "^1.16.1",
"cfenv": "^1.0.0",
"connect-flash": "^0.1.1",
"connect-session-sequelize": "^4.1.0",
"core-js": "^2.4.1",
"csurf": "^1.9.0",
"db-migrate": "^0.10.0-beta.20",
"db-migrate-pg": "^0.2.5",
"deep-extend": "^0.4.1",
"express": "4.16.2",
"express-rate-limit": "^2.9.0",
"express-session": "^1.5.0",
"express-winston": "^2.3.0",
"github": "^0.2.4",
"json-to-csv": "^1.0.0",
"method-override": "^2.3.10",
"moment": "^2.10.3",
"newrelic": "^1.40.0",
"nunjucks": "^3.0.1",
"passport": "0.3.2",
"passport-github": "0.1.5",
"pg": "^4.5.7",
"rc": "~0.5.0",
"sequelize": "^3.30.0",
"underscore": "^1.8.3",
"urlsafe-base64": "^1.0.0",
"validator": "^5.2.0",
"whatwg-fetch": "^1.0.0",
"winston": "^2.3.1",
"yamljs": "^0.2.8"
},
"scripts": {
"postinstall": "yarn migrate:up",
"build": "webpack -p",
"start": "node index.js",
"debug": "node --inspect index.js",
"watch": "NODE_ENV=development concurrently --kill-others --raw \"nodemon index.js --config nodemon.json\" \"webpack --progress --colors --watch\"",
"test": "yarn test:prepare && yarn test:server && yarn test:client",
"test:prepare": "NODE_ENV=test yarn migrate:up && yarn build",
"test:server": "NODE_ENV=test nyc --report-dir ./coverage/server mocha --timeout 1500 test/api/bootstrap.test.js test/api/unit/**/*.test.js test/api/requests/**/*.test.js",
"test:client": "nyc --report-dir ./coverage/client mocha --compilers js:babel-register,jsx:babel-register --recursive ./test/frontend",
"test:server:watch": "watch 'yarn test:server' ./api ./test/api",
"test:client:watch": "watch 'yarn test:client' ./frontend ./test/frontend",
"lint": "eslint ./api/**/*.js ./config/**/*.js ./frontend/**/*.js ./migration/**/*.js ./script/**/*.js ./services/**/*.js",
"lint:diff": "./scripts/lint-diff.sh",
"migrate:create": "node migrate.js create",
"migrate:up": "node migrate.js up || true",
"migrate:down": "node migrate.js down",
"migrate:test": "node migrate.js up --dry-run",
"export:sites": "node ./scripts/exportSitesAsCsv.js",
"analyze-webpack": "webpack-bundle-analyzer public/stats.json"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/18f/federalist.git"
},
"author": "dhcole",
"license": "CC0-1.0",
"devDependencies": {
"autoprefixer": "^6.5.1",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.16.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"chai-fetch-mock": "^1.0.1",
"concurrently": "^3.4.0",
"cookie": "^0.3.1",
"css-loader": "^0.28.4",
"enzyme": "^2.4.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-no-unsanitized": "^2.0.1",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-scanjs-rules": "^0.2.1",
"extract-text-webpack-plugin": "^2.1.0",
"fetch-mock": "^5.12.2",
"file-loader": "^0.11.1",
"history": "^4.6.3",
"json-schema-deref-sync": "^0.3.3",
"jsonschema": "^1.1.1",
"mocha": "2.3.4",
"nock": "^9.0.2",
"node-sass": "^4.5.3",
"nodemon": "^1.3.7",
"nyc": "^11.1.0",
"postcss-loader": "^2.0.5",
"promise-props": "^1.0.0",
"prop-types": "^15.5.10",
"proxyquire": "^1.7.10",
"react": "^15.1.0",
"react-addons-test-utils": "^15.3.1",
"react-autobind": "^1.0.6",
"react-dom": "^15.1.0",
"react-notification-system": "^0.2.14",
"react-notification-system-redux": "^1.1.2",
"react-redux": "^5.0.5",
"react-router": "^3.0.5",
"react-router-redux": "^4.0.8",
"react-test-renderer": "^15.5.4",
"redux": "^3.5.2",
"redux-devtools-extension": "^2.13.2",
"redux-form": "^7.0.4",
"redux-logger": "^3.0.6",
"sass-loader": "^6.0.5",
"shortid": "^2.2.8",
"sinon": "1.17.2",
"supertest": "^2.0.1",
"uswds": "^0.9.0",
"watch": "^1.0.2",
"webpack": "^2.6.1",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-manifest-plugin": "^1.1.0"
},
"engines": {
"node": "6.x.x",
"npm": "3.x.x"
}
}