-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.27 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "terraform-board",
"version": "0.5.0",
"bin": {
"terraform-board": "server/index.js"
},
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"flat": "^4.1.0",
"gopher-hcl": "https://github.com/Ghost---Shadow/gopher-hcl.git#master",
"lodash": "^4.17.15"
},
"repository": {
"type": "git",
"url": "https://github.com/Ghost---Shadow/terraform-board"
},
"scripts": {
"start": "react-scripts start",
"start:server": "nodemon ./server/index.js",
"build": "react-scripts build",
"test:browser": "react-scripts test",
"test:server": "jest --watch",
"test": "CI=true jest",
"test:server:coverage": "jest --coverage",
"lint:client": "eslint ./src",
"lint:server": "eslint ./server",
"lint": "npm run lint:client && npm run lint:server",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"build_and_publish": "npm run build; npm publish",
"build_and_link": "npm run build; npm link",
"prepublishOnly": "npm run test && npm run build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-highlight": "^0.12.0",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"styled-components": "^4.3.2",
"typeface-roboto": "0.0.75",
"cytoscape-dagre": "^2.2.2",
"@material-ui/core": "^4.3.0",
"@material-ui/icons": "^4.2.1",
"@storybook/addon-actions": "^5.1.10",
"@storybook/addon-knobs": "^5.1.10",
"@storybook/addon-links": "^5.1.10",
"@storybook/addons": "^5.1.10",
"@storybook/react": "^5.1.10",
"cytoscape": "^3.9.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"jest-file-snapshot": "^0.3.6",
"nodemon": "^1.19.1"
},
"proxy": "http://localhost:3001"
}