-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.12 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.12 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "simplenote-app-react",
"version": "0.0.1",
"description": "An application to make simple notes and export to PDF (React version)",
"main": "src/index.js",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-brands-svg-icons": "^5.12.0",
"@fortawesome/free-regular-svg-icons": "^5.12.0",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"bootstrap": "^4.4.1",
"classnames": "^2.2.6",
"jquery": "^3.4.1",
"jspdf": "^1.5.3",
"npm": "^6.13.4",
"popper.js": "^1.14.7",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-router-dom": "^5.1.2",
"styled-components": "^4.4.1",
"typescript": "^3.7.3"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-export-default-from": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@cypress/webpack-preprocessor": "^4.1.1",
"autoprefixer": "^9.7.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"cross-env": "^6.0.3",
"css-loader": "^3.3.2",
"cssnano": "^4.1.10",
"cypress": "^3.8.0",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"file-loader": "^4.3.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.0",
"postcss-loader": "^3.0.0",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"scripts": {
"clear": "rimraf ./dest",
"serve": "webpack-dev-server",
"build": "npm run clear && cross-env NODE_ENV=production webpack",
"test": "cypress open",
"test:run": "cypress run",
"lint": "./node_modules/.bin/eslint --ext .js ./src ./cypress/integration"
},
"browserslist": [
"last 2 version",
"> 2%"
],
"keywords": [],
"author": "Anton Safronov <aavvsskr@gmail.com>",
"license": "MIT"
}