-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.12 KB
/
package.json
File metadata and controls
82 lines (82 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "startto-map",
"version": "0.1.7",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/code-for-canada/start-map.git"
},
"keywords": [
"street art",
"map"
],
"homepage": "https://streetartoronto.ca",
"dependencies": {
"@mars/heroku-js-runtime-env": "^3.0.2",
"@nomadiclabs/google-maps-react": "^2.0.6",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"fast-sort": "^1.5.6",
"node-sass": "^4.13.1",
"react-app-polyfill": "^1.0.6",
"react-ga": "^2.7.0",
"react-lazyload": "^2.6.7",
"react-scripts": "3.4.3",
"react-select": "^3.1.0",
"react-slick": "^0.25.0",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"babel-preset-react-app": "^9.1.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"source-map-explorer": "^2.4.2"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"scripts": {
"analyze": "npm run build && source-map-explorer 'build/static/js/*.js'",
"start": "react-scripts start",
"build": "react-scripts build",
"lint": "eslint src/",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build:component": "rm -rf dist && NODE_ENV=production babel src/lib --out-dir dist --copy-files --ignore __tests__,spec.js,test.js,__snapshots__"
},
"eslintConfig": {
"extends": "react-app"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"ie 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"ie 11"
]
},
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist"
]
}