-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.63 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
{
"name": "brolly",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/runtime": "^7.8.4",
"babel-jest": "^25.1.0",
"babel-loader": "8.0.6",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.1.0",
"jest-dom": "^4.0.0",
"jest-localstorage-mock": "^2.4.0",
"mockdate": "^2.0.5",
"node-sass": "^4.13.1",
"npm": "^6.13.7",
"react-test-renderer": "^16.12.0",
"react-testing-library": "^8.0.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"svg-inline-loader": "^0.8.2",
"sw-precache-webpack-plugin": "^1.0.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"scripts": {
"start": "webpack-dev-server --mode development --open",
"build": "webpack --mode production",
"add-dist": "git add dist -f && git commit -m \"Release\"",
"push-dist": "git subtree push --prefix dist origin gh-pages",
"deploy": "yarn build && yarn add-dist && yarn push-dist",
"test": "jest",
"test-tdd": "jest --watch",
"test-clear": "jest --clearCache"
},
"dependencies": {
"axios": "^0.19.2",
"date-fns": "^2.9.0",
"lodash": "^4.17.15",
"normalize.css": "^8.0.1",
"react": "^16.12.0",
"react-dom": "^16.12.0"
}
}