forked from 18F/culper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3 KB
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
{
"name": "e-qip-prototype",
"version": "0.1.0",
"description": "Prototype for the e-QIP web application",
"main": "index.js",
"repository": {
"url": "git@github.com:truetandem/e-QIP-prototype.git",
"type": "git"
},
"author": "TrueTandem, LLC",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/18F/e-QIP-prototype/issues"
},
"homepage": "https://github.com/18F/e-QIP-prototype",
"dependencies": {
"axios": "^0.18.0",
"deepmerge": "^1.5.2",
"dotenv": "^4.0.0",
"esdoc": "^1.0.3",
"eslint-plugin-react": "^7.3.0",
"file-saver": "^1.3.8",
"font-awesome": "^4.7.0",
"global": "^4.3.1",
"history": "^4.7.2",
"node-sass": "^4.5.3",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^3.6.0",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.3.0",
"redux-thunk": "^2.1.0",
"@18f/stylelint-rules": "^2.0.0",
"axios-mock-adapter": "^1.15.0",
"babel-core": "^6.26.0",
"babel-jest": "^17.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"codecov": "^2.3.0",
"enzyme": "^2.9.1",
"es6-promise": "^4.1.1",
"eslint": "^4.7.2",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-promise": "^3.3.2",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-concat": "^2.6.1",
"gulp-envify": "^1.0.0",
"gulp-react": "^3.1.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.1",
"http-server": "^0.10.0",
"jest": "^19.1.0-alpha.eed82034",
"jsdoc": "^3.5.5",
"json-loader": "^0.5.7",
"prop-types": "^15.6.0",
"react-addons-test-utils": "^15.6.0",
"react-autosuggest": "^9.3.2",
"react-markdown": "^2.4.4",
"react-test-renderer": "^15.6.1",
"react-tokeninput": "^2.4.0",
"smoothscroll-polyfill": "^0.3.6",
"uswds": "^1.4.0",
"webpack": "^3.6.0",
"webpack-stream": "^4.0.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"verbose": false,
"bail": false,
"clearMocks": true
},
"scripts": {
"test": "NODE_ENV='test' ./node_modules/.bin/jest -u --logHeapUsage --coverage --silent",
"lint": "./node_modules/.bin/gulp lint",
"coverage": "NODE_ENV=test npm install -g codecov && codecov",
"build": "./node_modules/.bin/gulp build",
"watch": "./node_modules/.bin/gulp watchdog",
"docs": "./node_modules/.bin/jsdoc ./src -r -d ./doc/frontend"
}
}