-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.34 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
{
"name": "spotify-player",
"version": "1.0.1",
"description": "Small player project for an assingment on a TDD course",
"main": "index.js",
"scripts": {
"lint": "eslint . --fix",
"build": "webpack -p --env.NODE_ENV=production",
"watch": "webpack-dev-server --env.NODE_ENV=local --hot --open-page ./index.html",
"test": "jest --coverage",
"test:tdd": "jest --watch"
},
"author": "Andre L. Adriano",
"license": "MIT",
"dependencies": {
"@mdi/font": "^3.2.89",
"@mdi/js": "^3.2.89",
"axios": "^0.18.1",
"bulma": "^0.7.2",
"dotenv": "^6.2.0",
"ramda": "^0.26.1"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"css-loader": "^2.1.0",
"eslint": "^5.11.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.2.1",
"jest": "^23.6.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
},
"husky": {
"hooks": {
"pre-push": "eslint . && jest --coverage"
}
}
}