forked from fawwaz/soya-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.1 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
{
"private": true,
"license": "MIT",
"scripts": {
"build": "lerna exec --scope soya-next* --ignore soya-next-server -- babel src -d lib --ignore __tests__",
"clean": "rimraf examples/*/.next packages/*/lib",
"clean-all": "yarn run clean && lerna clean",
"coverage": "yarn test -- --coverage",
"coveralls": "yarn run coverage && cat ./coverage/lcov.info | coveralls",
"docs:build": "gitbook build",
"docs:prepare": "gitbook install",
"docs:watch": "gitbook serve",
"lint": "marlint",
"postinstall": "lerna bootstrap",
"precommit": "lint-staged",
"prepublish": "yarn run clean && yarn run build",
"publish": "lerna publish",
"test": "yarn run lint && jest",
"watch": "yarn run build -- -w"
},
"devDependencies": {
"@zeit/next-css": "^0.1.3",
"babel-cli": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"config": "^1.30.0",
"coveralls": "^3.0.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"enzyme-to-json": "^3.1.4",
"express": "^4.15.3",
"gitbook-cli": "^2.3.2",
"husky": "^0.14.0",
"jest": "^22.0.4",
"lerna": "^2.0.0",
"lint-staged": "^6.0.0",
"marlint": "^6.3.1",
"next": "^5.0.0",
"prettier": "^1.9.2",
"react": "^16.2.0",
"react-apollo": "^2.0.4",
"react-cookie": "^2.0.8",
"react-dom": "^16.2.0",
"react-redux": "^5.0.5",
"react-test-renderer": "^16.0.0",
"redux": "^3.7.2",
"rimraf": "^2.6.1"
},
"lint-staged": {
"*.js": [
"prettier",
"git add"
]
},
"marlint": {
"ignores": [
"**/_book/**",
"**/.idea/**",
"**/.next/**",
"**/examples/**",
"**/lib/**"
],
"rules": {
"react/react-in-jsx-scope": "off"
}
},
"jest": {
"setupFiles": [
"./test/setup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"testPathIgnorePatterns": [
"/_book/",
"/examples/"
],
"testMatch": [
"**/__tests__/**/*.js?(x)",
"**/?(*).(spec|test).js?(x)"
]
}
}