-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.05 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
{
"name": "ticket-machine-api",
"version": "0.0.1",
"description": "Swagger doc for a ticket machine",
"main": "dist/api-spec.yaml",
"scripts": {
"start": "webpack-dev-server --config build/webpack.config.js --open --progress --color --port=9000 --mode=development",
"build": "webpack --config build/webpack.config.js --progress",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "node_modules/.bin/eslint ."
},
"author": "Tomas Salazar",
"license": "ISC",
"dependencies": {
"js-yaml": "^3.14.0",
"swagger-ui": "^3.25.5",
"yaml-include": "^1.2.0"
},
"devDependencies": {
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^1.1.11",
"style-loader": "^0.21.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-shell-plugin": "^0.5.0"
}
}