-
-
Notifications
You must be signed in to change notification settings - Fork 389
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.58 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.58 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
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "jss-repository",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"prepublishOnly": "yarn check-snapshots && yarn build && yarn typecheck && yarn lint && yarn format:ci && yarn test",
"publish": "lerna publish",
"typecheck": "flow check --max-warnings=0",
"ts-check": "tsc",
"lint": "eslint scripts/ packages/ docs/ --ext js,md",
"format": "prettier \"*.{js,md,json}\" \"{docs,packages,scripts}/**/*.{js,md,json}\" --write",
"format:ci": "yarn format -- --list-different",
"test": "cross-env NODE_ENV=test VERSION=\"1\" karma start --single-run",
"test:watch": "cross-env NODE_ENV=test VERSION=\"1\" karma start",
"check-snapshots": "lerna run check-snapshot",
"posttest": "[ -z \"$TRAVIS\" ] || codecov",
"codecov": "codecov",
"bench": "cross-env BENCHMARK=true karma start --single-run",
"pre-commit": "lint-staged && yarn typecheck && yarn ts-check"
},
"lint-staged": {
"**/*.{js,md,json,ts}": [
"prettier --write",
"git add"
],
"**/*.{js,md}": [
"eslint"
]
},
"pre-commit": "pre-commit",
"engines": {
"node": ">=8"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-loader": "^7.1.5",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-inline-version": "^1.0.2",
"babel-plugin-rewire": "^1.0.0",
"babel-plugin-transform-es3-member-expression-literals": "^6.8.0",
"babel-plugin-transform-es3-property-literals": "^6.8.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-inline-environment-variables": "^6.8.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.16.0",
"camelcase": "^5.0.0",
"chalk": "^2.4.1",
"codecov": "^1.0.1",
"common-tags": "^1.4.0",
"cross-env": "^3.1.3",
"css.escape": "^1.5.1",
"detect-browser": "^1.5.0",
"es5-shim": "^4.5.9",
"eslint": "^5.7.0",
"eslint-config-jss": "^5.0.1",
"eslint-config-prettier": "^2.9.0",
"expect.js": "^0.3.1",
"flow-bin": "^0.83.0",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-benchmark": "^0.6.0",
"karma-benchmark-reporter": "^0.1.1",
"karma-browserstack-launcher": "^1.1.1",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"lerna": "^2.11.0",
"lint-staged": "^3.2.2",
"mocha": "^3.2.0",
"pre-commit": "^1.1.3",
"prettier": "^1.13.5",
"raf": "^3.4.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"rimraf": "^2.5.4",
"rollup": "^0.65.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-globals": "^1.3.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-size-snapshot": "^0.6.1",
"rollup-plugin-uglify": "^4.0.0",
"shelljs": "^0.8.2",
"sinon": "4.5.0",
"typescript": "^3.1.3",
"webpack": "^2.3.3",
"zen-observable": "^0.6.0"
}
}