-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "react-spiral",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook",
"build": "build-storybook -o build",
"start": "serve ./build --single",
"lint": "eslint src/ stories/",
"lint:fix": "eslint --fix src/ stories/",
"now-build": "npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"d3": "^5.9.2",
"d3-scale-chromatic": "^1.1.0",
"konva": "^3.2.5",
"ramda": "^0.26.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-konva": "^16.8.6",
"react-motion": "^0.5.2"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@mft/eslint-config-momentumft": "^4.0.0",
"@storybook/react": "^5.0.10",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"chai-almost": "^1.0.1",
"chai-subset": "^1.6.0",
"eslint": "^5.9.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"prettier": "^1.17.0",
"webpack": "^4.30.0"
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": false,
"bracketSpacing": false
}
}