-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·91 lines (91 loc) · 2.97 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
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "aliina",
"version": "1.5.0",
"description": "Spotify playlist generator",
"main": "src/index.js",
"scripts": {
"build": "export NODE_ENV=production && rimraf build/ && webpack --config ./webpack/prod.js",
"deploy": "npm run build && git checkout gh-pages && git rm *.js && cp ./build/* . && git add *.js && git commit -a -m '[ci skip] Update bundle' && git push",
"deps:update": "npm-outdated-to-latest",
"release": "npm version minor && git push --tags",
"start": "webpack-dev-server --open \"Google Chrome\" --config ./webpack/dev.js",
"storybook": "start-storybook",
"test": "npm run test:lint && npm run test:unit",
"test:e2e": "cd e2e && make && nightwatch && make stop",
"test:lint": "eslint ./src --format codeframe",
"test:lint:fix": "eslint ./src --format codeframe --fix ",
"test:unit": "jest ./src --coverage",
"test:update": "jest ./src --updateSnapshot"
},
"repository": {
"type": "git",
"url": "github.com/lauravuo/aliina"
},
"keywords": [
"spotify",
"playlist"
],
"homepage": "https://lauravuo.github.io/aliina",
"author": "lauravuo",
"license": "MIT",
"jest": {
"testRegex": ".*\\.test\\.js$",
"testEnvironment": "node",
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.svg$": "jest-svg-transformer"
}
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"connected-react-router": "^6.8.0",
"history": "^4.10.1",
"prop-types": "15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux": "4.0.5",
"redux-devtools-extension": "2.13.8",
"redux-observable": "1.2.0",
"rxjs": "^6.6.3",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@storybook/addon-storyshots": "^6.0.22",
"@storybook/react": "^6.0.22",
"@svgr/webpack": "^5.4.0",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.11.1",
"chromedriver": "^85.0.1",
"config": "^3.3.2",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.2",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.4.2",
"jest-svg-transformer": "1.0.0",
"nightwatch": "^1.4.3",
"npm-outdated-to-latest": "^1.0.3",
"prettier": "^2.1.2",
"react-test-renderer": "^16.13.1",
"rimraf": "3.0.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.4",
"webpack-version-file": "0.1.6"
}
}