-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
41
42
{
"name": "times-visuals",
"version": "1.0.0",
"description": "A suite of libraries and components for visuals and graphics at The Times and The Sunday Times",
"main": "index.js",
"author": "Chris Hutchinson <[email protected]>",
"license": "BSD-3-Clause",
"private": true,
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs",
"build": "lerna run build --stream",
"publish-all": "sh ./scripts/publish.sh",
"test": "lerna run test --stream",
"test:update-snapshots": "lerna run test --stream -- -- -u"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.1.1",
"@storybook/addon-links": "^5.1.1",
"@storybook/addons": "^5.1.1",
"@storybook/react": "^5.1.1",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.1",
"file-loader": "^2.0.0",
"lerna": "^3.2.1",
"storybook-readme": "^5.0.3",
"style-loader": "^0.23.1"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"dependencies": {
"react": "^16.6.3",
"react-dom": "^16.6.3"
}
}