-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.16 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
{
"name": "luminol-webpack",
"version": "1.0.0",
"author": "Izaak Schroeder <[email protected]>",
"license": "CC0-1.0",
"repository": "metalabdesign/luminol-webpack",
"main": "./lib/index.js",
"scripts": {
"prepublish": "npm run clean && npm run build",
"clean": "./node_modules/.bin/rimraf lib",
"build": "./node_modules/.bin/babel --copy-files --ignore '**/__tests__' -s -d lib src",
"test:lint": "./node_modules/.bin/eslint .",
"test:smoke": "echo 'todo'",
"test:flow": "./node_modules/.bin/flow check",
"test:spec": "NODE_ENV=test ./node_modules/.bin/jest --coverage",
"test": "npm run test:lint && npm run test:spec && npm run test:smoke"
},
"dependencies": {
"apollo-cache-inmemory": "^1.2.5",
"apollo-client": "^2.3.5",
"apollo-link-ws": "^1.0.8",
"cuid": "^2.1.1",
"debug": "^4.0.0",
"midori": "^3.0.0",
"ramda": "^0.26.0",
"subscriptions-transport-ws": "^0.9.12",
"webpack-partial": "^2.2.0"
},
"devDependencies": {
"@babel/cli": "7.1.5",
"@babel/core": "7.1.6",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-syntax-flow": "7.0.0",
"@babel/plugin-syntax-object-rest-spread": "7.0.0",
"@babel/preset-env": "7.1.6",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.6.0",
"babel-loader": "8.0.4",
"babel-plugin-graphql-tag": "2.0.0",
"babel-plugin-module-resolver": "3.1.1",
"eslint": "5.9.0",
"eslint-config-metalab": "10.0.0",
"flow-bin": "0.86.0",
"graphql": "14.0.2",
"graphql-tag": "2.10.0",
"jest": "23.6.0",
"ncp": "2.0.0",
"node-fetch": "2.3.0",
"prettier": "1.13.7",
"stats-webpack-plugin": "0.7.0",
"url-join": "4.0.0",
"webpack": "4.26.0",
"webpack-node-externals": "1.7.2"
},
"peerDependencies": {
"luminol": "*",
"webpack": "^1.12.2 || ^2.2.0 || ^3.5.6 || ^4.0.0-alpha.0"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.test.js"
],
"collectCoverageFrom": [
"<rootDir>/src/**/*.js"
]
}
}