This repository has been archived by the owner on Dec 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
104 lines (104 loc) · 3.09 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
{
"name": "react-topology",
"version": "0.1.0",
"author": "YLD",
"main": "src/index.js",
"license": "MPL-2.0",
"dependencies": {
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"chart.js": "^2.7.0",
"d3": "^4.11.0",
"force-array": "^3.1.0",
"fs": "^0.0.1-security",
"joyent-ui-toolkit": "^2.1.0",
"lodash.difference": "^4.5.0",
"lodash.differenceby": "^4.8.0",
"normalized-styled-components": "^1.0.17",
"polished": "^1.8.1",
"prop-types": "^15.5.10",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-scripts": "^1.0.14",
"reduce-css-calc": "^2.1.1",
"redux": "^3.7.2",
"redux-form": "^7.1.1",
"remcalc": "^1.0.9",
"styled-components": "^2.2.1",
"styled-is": "^1.1.0"
},
"scripts": {
"start": "styleguidist server",
"build": "styleguidist build",
"lint:js": "eslint src",
"jest": "jest --env=jsdom",
"test": "run-s lint:js lint:css jest",
"lint:css": "stylelint './src/**/*.js'",
"precommit": "lint-staged"
},
"devDependencies": {
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-plugin-uglify": "^1.0.2",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-joyent-portal": "^3.2.0",
"babel-preset-stage-0": "^6.24.1",
"bundlesize": "^0.15.3",
"css-loader": "^0.28.7",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"enzyme-to-json": "^3.1.2",
"eslint": "^4.7.2",
"eslint-config-joyent-portal": "^3.1.0",
"eslint-config-prettier": "^2.6.0",
"eslint-config-react-app": "^2.0.1",
"eslint-config-xo-space": "^0.16.0",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"file-loader": "^1.1.5",
"husky": "^0.14.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^21.1.0",
"joyent-react-scripts": "^2.3.0",
"lint-staged": "^4.2.2",
"npm-run-all": "^4.1.1",
"react-docgen-displayname-handler": "^1.0.1",
"react-styleguidist": "^6.0.25",
"react-test-renderer": "^16.0.0",
"redrun": "^5.9.18",
"sinon": "^4.0.1",
"style-loader": "^0.19.0",
"stylelint": "^8.2.0",
"stylelint-config-joyent-portal": "^2.0.1",
"svg-inline-loader": "^0.8.0",
"url-loader": "^0.6.2"
},
"lint-staged": {
"src/**/*.js": [
"jest --bail --findRelatedTests",
"eslint --fix",
"stylelint",
"git add -A"
]
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|sass|scss|postcss)$": "identity-obj-proxy"
},
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"collectCoverage": true,
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}