-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
95 lines (95 loc) · 3.24 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
92
93
94
95
{
"name": "@randy.tarampi/www",
"description": "ʕつ•ᴥ•ʔつ ︵ (ɐɔ˙ᴉdɯɐɹɐʇʎpuɐɹ)",
"version": "7.0.0",
"author": {
"name": "Randy Tarampi",
"email": "[email protected]",
"url": "https://www.randytarampi.ca"
},
"bugs": "https://github.com/randytarampi/me/issues",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@fortawesome/fontawesome-free": "^5.15.4",
"@randy.tarampi/assets": "^7.0.0",
"@randy.tarampi/browser-logger": "^7.0.0",
"@randy.tarampi/css": "^7.0.0",
"@randy.tarampi/js": "^7.0.0",
"@randy.tarampi/jsx": "^7.0.0",
"@randy.tarampi/letter": "^7.0.0",
"@randy.tarampi/resume": "^7.0.0",
"@randy.tarampi/schema-dot-org-json-ld-components": "latest",
"@randy.tarampi/views": "^7.0.0",
"@types/react": "^16.14.25",
"history": "^4.10.1",
"immutable": "^4.0.0",
"lodash": "^4.17.21",
"materialize-css": "^1.0.0",
"prop-types": "^15.8.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0",
"react-hot-loader": "^4.13.0",
"react-materialize": "^3.10.0",
"react-redux": "^7.2.8",
"react-router": "^5.3.1",
"react-router-sitemap": "^1.2.0",
"redux": "^4.2.0",
"redux-immutable": "^4.0.0",
"redux-thunk": "^2.4.1",
"register-service-worker": "^1.7.2"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-enzyme": "^1.0.0-beta.1",
"cheerio": "^1.0.0-rc.10",
"config": "^3.3.7",
"copy-webpack-plugin": "^10.2.4",
"cross-env": "^7.0.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"express": "^4.17.3",
"gulp": "^4.0.2",
"html-webpack-plugin": "^5.5.0",
"jsdom": "^19.0.0",
"mocha-junit-reporter": "^2.0.2",
"mock-local-storage": "^1.1.22",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"redux-mock-store": "^1.5.4",
"sinon": "^13.0.2",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.72.0",
"webpack-bundle-analyzer": "^4.5.0",
"workbox-webpack-plugin": "^6.5.3"
},
"directories": {
"lib": "./src/lib",
"test": "./test"
},
"homepage": "https://www.randytarampi.ca",
"license": "MIT",
"private": true,
"publishConfig": {
"access": "public"
},
"repository": {
"directory": "packages/www",
"type": "git",
"url": "https://github.com/randytarampi/me.git"
},
"scripts": {
"build": "CAMPAIGN_SOURCE=$(node -p \"require(\\\"./package.json\\\").name\") CAMPAIGN_CONTENT=$(node -p \"require(\\\"./package.json\\\").version\") gulp -LLLL --color build",
"clean": "gulp -LLLL --color clean",
"cover": "cross-env-shell NODE_ENV=test nyc gulp -LLLL --color test",
"dev": "yarn run dev:client",
"dev:client": "yarn run predev:client && CAMPAIGN_SOURCE=$(node -p \"require(\\\"./package.json\\\").name\") CAMPAIGN_CONTENT=$(node -p \"require(\\\"./package.json\\\").version\") webpack serve --config ./webpack.client.config.dev.js --hot",
"docs": "gulp -LLLL --color docs",
"predev:client": "rm -rf dist/*.js dist/*.css",
"prepare": "yarn snyk-protect && yarn run build",
"pretest": "gulp -LLLL --color lint",
"preuninstall": "yarn run clean",
"start": "yarn run dev",
"test": "cross-env-shell NODE_ENV=test gulp -LLLL --color test"
},
"snyk": false
}