-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.91 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.91 KB
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
{
"name": "Reactapalle",
"version": "1.0.0",
"description": "A React Web Audio API abstraction library.",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development parcel src/index.html -d dev",
"build": "NODE_ENV=production parcel build src/index.html",
"test": "jest",
"storybook": "NODE_PATH=. start-storybook -p 9001 -c .storybook",
"eslint": "eslint -c .eslintrc.json --ext .js,.jsx ./",
"lint:css": "stylelint 'src/**/*.js'",
"format": "prettier --config .prettierrc --write **/*.{js,jsx}",
"lint": "npm run format && npm run eslint"
},
"keywords": [],
"author": "Frank Robert",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.1",
"babel-plugin-react-docgen": "^1.9.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.12.3",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.2",
"parcel-bundler": "^1.6.2",
"prettier": "^1.11.1",
"react-test-renderer": "^16.2.0",
"stylelint": "^9.1.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.3.1"
},
"dependencies": {
"@storybook/addon-centered": "^3.3.15",
"@storybook/addon-info": "^3.4.1",
"@storybook/addon-knobs": "^3.3.14",
"@storybook/react": "^3.3.14",
"lodash": "^4.17.5",
"prop-types": "^15.6.1",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"styled-components": "^3.2.5"
}
}