-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.3 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.3 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "chablis",
"version": "1.0.12",
"description": "A mobile first frontend framework made with wine",
"main": "dist/chablis.min.js",
"scripts": {
"storybook": "build-storybook -c .storybook -o docs",
"start": "start-storybook -p 9001 -c .storybook",
"test": "NODE_ENV=test jest",
"lint": "eslint src/**",
"build": "NODE_ENV=production rollup -c",
"dev": "rollup -c -w",
"publish": "./scripts/precommit.sh",
"setup": "chmod +x scripts/precommit.sh"
},
"keywords": [
"react",
"chablis",
"wine",
"evino",
"frontend",
"styled-components",
"storybook"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Evino/chablis.git"
},
"author": "The Evino Frontend Team",
"contributors": [
"Evino"
],
"license": "MIT",
"devDependencies": {
"@storybook/addon-info": "^3.3.15",
"@storybook/react": "^3.3.15",
"babel-core": "6.26.3",
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "1.7.0",
"eslint": "5.9.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.11.1",
"jest": "23.6.0",
"pre-commit": "^1.2.2",
"react-test-renderer": "17.0.2",
"rollup": "0.67.4",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-babel": "3.0.7",
"rollup-plugin-commonjs": "9.2.0",
"rollup-plugin-json": "3.1.0",
"rollup-plugin-node-resolve": "3.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "6.0.0"
},
"dependencies": {
"@babel/core": "7.23.7",
"babel-plugin-styled-components": "2.1.4",
"prop-types": "15.6.2",
"react": "16.14.0",
"react-clipboard.js": "2.0.16",
"react-dom": "16.14.0",
"styled-components": "^5.0.0"
},
"pre-commit": {
"run": [
"setup",
"publish"
]
},
"jest": {
"bail": true,
"setupFiles": [
"./test/config.js"
],
"coverageThreshold": {
"global": {
"branches": 60,
"functions": 80,
"lines": 80,
"statements": 80
}
}
}
}