-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 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
{
"name": "agassiz",
"version": "0.0.3",
"author": "Triple E RV <[email protected]>",
"license": "MIT",
"workspaces": [
"core/components",
"core/standards",
"core/babel-preset"
],
"private": true,
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/runtime": "^7.3.0",
"@storybook/addon-actions": "^4.1.3",
"@storybook/addon-links": "^4.1.3",
"@storybook/addons": "^4.1.3",
"@storybook/cli": "^4.1.3",
"@storybook/react": "^4.1.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"eslint": "^5.10.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"prettier": "^1.15.3"
},
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build:components": "babel --presets=./core/babel-preset/index.js core/components -d core/components/dist --ignore /node_modules/",
"build:standards": "babel --presets=./core/babel-preset/index.js core/standards -d core/standards/dist --ignore /node_modules/",
"build": "npm run build:standards && npm run build:components"
},
"resolutions": {
"lodash": "^4.17.12",
"braces": "^2.3.1"
}
}