-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.33 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
{
"name": "repo-lister",
"version": "0.3.0",
"bin": {
"repo-web": "scripts/cli.js"
},
"scripts": {
"clean": "rm -rf .next coverage/ node_modules/.cache/ tmp/ out/",
"dev": "next",
"dev:export": "export DATA_URL=http://localhost:8080/static/repos/data.json && next build && next export -o=tmp/export_out/ && (cd tmp/export_out && serve -p 8080)",
"external-test": "scripts/test-external-usage",
"lint": "standard --fix",
"test": "concurrently --kill-others-on-fail \"npm:test:*\" && npm run external-test && standard",
"test:deps": "depcheck --ignores $(cat depcheck_ignores.txt | xargs | sed -e 's/ /,/g')",
"test:export": "next build && next export -o=tmp/test_export_out/",
"test:jest": "jest --no-cache --silent --coverage"
},
"license": "ISC",
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"bulma": "^0.7.2",
"next": "^7.0.2",
"next-redux-wrapper": "^2.0.0",
"node-sass": "^4.9.4",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^5.1.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"repo-components": "git+https://github.com/gaggle/repo-components.git#v0.5.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-class-properties": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/runtime": "^7.1.5",
"babel-eslint": "^10.0.1",
"concurrently": "^4.1.0",
"depcheck": "^0.6.11",
"fetch-mock": "^7.1.0",
"jest": "^23.6.0",
"lodash": "^4.17.11",
"redux-mock-store": "^1.5.1",
"serve": "^10.1.1",
"standard": "^12.0.1"
},
"babel": {
"plugins": [
"styled-jsx/babel",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-syntax-class-properties",
"@babel/plugin-transform-modules-commonjs",
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-proposal-export-default-from"
],
"presets": [
"@babel/preset-react"
]
},
"jest": {
"collectCoverageFrom": [
"lib/**/*",
"scripts/**/*",
"store/**/*"
],
"coverageReporters": [
"lcov",
"text",
"html"
]
},
"standard": {
"parser": "babel-eslint"
}
}