-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.79 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
{
"name": "jungleminds-basic-twig-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "start-storybook -p 3000",
"test": "jest",
"test:watch": "yarn test --watch",
"build": "build-storybook -s public -o build && NODE_ENV=production node scripts/build",
"validate": "flow",
"lint": "yarn lint:js",
"lint:js": "eslint \"src/**/*.{js,jsx}\"",
"lint:js-fix": "yarn lint:js --fix",
"format": "prettier --list-different \"src/**/*.{js,jsx}\" | snazzy",
"postinstall": "yarn flow-typed update"
},
"keywords": [],
"author": "JungleMinds",
"private": true,
"license": "MIT",
"workspaces": [
"src/components/atomic-carousel",
"src/components/atomic-gallery"
],
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/polyfill": "7.2.5",
"@babel/preset-flow": "7.0.0",
"@storybook/addon-knobs": "4.1.11",
"@storybook/html": "4.1.11",
"archiver": "3.0.0",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.5",
"css-loader": "2.1.0",
"eslint": "5.13.0",
"eslint-config-prettier": "4.0.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-flowtype": "3.2.1",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"flow-bin": "0.92.1",
"flow-typed": "2.5.1",
"fs-extra": "7.0.1",
"husky": "1.3.1",
"jest": "24.0.0",
"mini-css-extract-plugin": "0.5.0",
"node-sass": "4.11.0",
"prettier": "1.16.4",
"sass-loader": "7.1.0",
"snazzy": "8.0.0",
"style-loader": "0.23.1",
"twig": "1.13.2",
"twig-loader": "0.4.1",
"webpack-cli": "3.2.1"
},
"dependencies": {
"@babel/preset-env": "7.3.1"
}
}