design-system-jss
Version:
Boilerplate Design System using JSS and ReactJS
64 lines (63 loc) • 1.67 kB
JSON
{
"name": "design-system-jss",
"version": "1.0.0",
"description": "Boilerplate Design System using JSS and ReactJS",
"main": "lib",
"scripts": {
"build": "babel src -d lib",
"dev": "npm run storybook",
"docs": "npx styleguidist server",
"docs:build": "npx styleguidist build",
"storybook": "start-storybook -p 9001 -c .storybook",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"design-system",
"design-systems",
"component-system",
"jss",
"css-in-js"
],
"author": "Ryosuke",
"license": "MIT",
"devDependencies": {
"@storybook/addon-options": "^3.4.10",
"@storybook/react": "^3.4.10",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.4.4",
"enzyme-adapter-react-16": "^1.2.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.5.0",
"prettier": "1.14.2",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-styleguidist": "^7.2.4",
"webpack": "^4.16.5"
},
"peerDependencies": {
"react": "^16.4.2",
"prop-types": "^15.6.2"
},
"dependencies": {
"react-jss": "^8.6.1"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>tests/setup/setupEnzyme.js",
"testPathIgnorePatterns": [
"<rootDir>/tests/setup/"
]
}
}