-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.48 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "ca",
"version": "4.2.2",
"description": "Portfolio",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "webpack-serve --open --hmr --reload --config ./webpack.dev.js",
"prod": "webpack --config ./webpack.prod.js -p --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kmiloarguello/CA.git"
},
"keywords": [
"CA",
"portfolio",
"software",
"developer"
],
"author": "Camilo Arguello @kmiloarguello",
"license": "MIT",
"bugs": {
"url": "https://github.com/kmiloarguello/CA/issues"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"moduleNameMapper": {
"\\.(css|less|sass)$": "<rootDir>/src/__mocks__/styleMock.js",
"\\.(gif|jpg|png|ttf|eot|svg)$": "<rootDir>/src/__mocks__/fileMock.js"
}
},
"homepage": "https://github.com/kmiloarguello/CA#readme",
"devDependencies": {
"acorn-dynamic-import": "4.0.0",
"autoprefixer": "8.6.5",
"babel-core": "6.26.3",
"babel-jest": "23.4.0",
"babel-loader": "7.1.5",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"clean-webpack-plugin": "0.1.19",
"copy-webpack-plugin": "4.5.2",
"css-loader": "1.0.0",
"cssnano": "4.0.3",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "1.1.11",
"html-webpack-plugin": "3.2.0",
"identity-obj-proxy": "3.0.0",
"jest": "23.4.1",
"jest-mock": "23.2.0",
"path": "0.12.7",
"postcss": "6.0.23",
"postcss-cli": "5.0.1",
"postcss-cssnext": "3.1.0",
"postcss-font-magician": "2.2.1",
"postcss-import": "11.1.0",
"postcss-loader": "2.1.6",
"preload-webpack-plugin": "2.3.0",
"react-loadable": "5.5.0",
"react-testing-library": "4.1.2",
"regenerator-runtime": "0.12.0",
"style-loader": "0.21.0",
"url-loader": "1.0.1",
"webpack": "4.16.0",
"webpack-cli": "3.0.8",
"webpack-dev-server": "3.1.4",
"webpack-merge": "4.1.3",
"webpack-serve": "2.0.2"
},
"dependencies": {
"acorn": "6.1.1",
"babel-plugin-dynamic-import-node": "2.0.0",
"babel-polyfill": "6.26.0",
"particles.js": "^2.0.0",
"prop-types": "15.7.2",
"react": "16.4.1",
"react-dom": "16.4.1",
"wowjs": "1.1.3"
}
}