-
Notifications
You must be signed in to change notification settings - Fork 137
/
package.json
77 lines (77 loc) · 1.96 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
{
"name": "@reactioncommerce/reaction-docs",
"version": "0.1.0",
"description": "",
"homepage": "https://github.com/reactioncommerce/reaction-docs",
"repository": "https://github.com/reactioncommerce/reaction-docs",
"author": {
"name": "Reaction Commerce",
"email": "engineering@reactioncommerce.com",
"url": "https://reactioncommerce.com"
},
"license": "GPL-3.0-only",
"private": true,
"scripts": {
"build": "cd website && yarn build --skip-image-compression",
"lint": "yarn run lint:eslint",
"lint:eslint": "eslint website/.",
"lint:fix": "yarn run lint:fix:eslint",
"lint:fix:eslint": "eslint --fix website/.",
"start": "cd website && yarn start --no-watch --port $PORT",
"test": "echo 'No tests yet'",
"version": "cd website && yarn run version",
"rename-version": "cd website && yarn run rename-version"
},
"eslintConfig": {
"extends": [
"@reactioncommerce"
]
},
"eslintIgnore": [
"build",
"reports",
"node_modules",
"website/node_modules",
"website/build"
],
"jest": {
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/reports/**",
"!**/build/**",
"!**/node_modules/**",
"!**/vendor/**"
]
},
"babel": {
"plugins": [
"babel-plugin-styled-components"
],
"presets": [
"env",
"stage-2",
"react"
],
"sourceMaps": true
},
"dependencies": {},
"devDependencies": {
"@reactioncommerce/eslint-config": "1.7.0",
"adr": "^1.1.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"docusaurus": "^1.2",
"eslint": ">=4",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": ">=2",
"eslint-plugin-jest": "^21.12.1",
"eslint-plugin-jsx-a11y": ">=6",
"eslint-plugin-promise": ">=3",
"eslint-plugin-react": ">=7",
"jest-junit": "3.6.0",
"rimraf": "^2.6.2",
"snyk": "^1.69"
}
}