-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·86 lines (86 loc) · 2.63 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
{
"name": "alps-react",
"version": "1.27.0",
"private": false,
"author": {
"name": "General Conference of Seventh-day Adventists"
},
"contributors": [
{
"name": "Eduardo Ludi",
"email": "eduardo.ludi@stimme-der-hoffnung.de"
},
{
"name": "Olivier Guy",
"email": "olivier.guy@stimme-der-hoffnung.de"
}
],
"license": "SEE LICENSE IN LICENSE",
"description": "React implementation of the Adventist Living Pattern System (ALPS)",
"repository": "git@github.com:adventistchurch/alps-react.git",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"dependencies": {},
"files": [
"dist"
],
"scripts": {
"build": "rollup --config",
"dev": "rollup --config --watch",
"storybook": "start-storybook -p 9001 -s ./public -c .storybook --ci",
"sb": "yarn storybook",
"deploy": "npm run-script build && npm publish",
"deploy:patch": "npm version patch && npm run deploy",
"deploy:minor": "npm version minor && npm run deploy",
"deploy:major": "npm version major && npm run deploy",
"build-storybook": "build-storybook -s public -o .storybook-build",
"deploy-storybook": "storybook-to-ghpages"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@storybook/addon-contexts": "^5.3.19",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addon-viewport": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/react": "^5.3.19",
"@storybook/storybook-deployer": "^2.8.10",
"@whitespace/storybook-addon-html": "^1.2.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.56.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"storybook-addon-jsx": "^7.3.12",
"webpack": "^5.51.1"
},
"peerDependencies": {
"react": "^16.9.x || ^17.0.x",
"react-dom": "^16.9.x || ^17.0.x"
},
"prettier": {
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"useTabs": false,
"trailingComma": "es5"
},
"eslintConfig": {
"extends": "react-app"
}
}