-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
115 lines (115 loc) · 3.49 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "bf-ui",
"version": "1.0.0",
"description": "User interface for the Beachfront project",
"scripts": {
"build": "webpack",
"clean": "rimraf report dist beachfront.zip",
"clear": "rm -rf beachfront.zip dist/ node_modules/ report/",
"create-ssl-certs": "openssl req -newkey rsa:2048 -nodes -keyout .development_ssl_certificate.key -sha256 -x509 -days 3652 -subj /C=US/ST=Unknown/L=Unknown/O=Beachfront/OU=Development/CN=localhost -out .development_ssl_certificate.pem",
"lint": "tslint '{src,test}/**/*.{ts,tsx}' -t verbose",
"prereinstall": "npm run clear",
"prestart": "npm run reinstall",
"reinstall": "npm install",
"start": "npm run watch",
"test": "jest --silent",
"test:coverage": "jest --silent --coverage",
"test:watch": "jest --silent --watch",
"watch": "webpack-dev-server --inline --colors --history-api-fallback --https --cert .development_ssl_certificate.pem --key .development_ssl_certificate.key --host 0.0.0.0"
},
"author": "RadiantBlue Technologies",
"license": "Apache-2.0",
"engines": {
"node": "^5.7.0"
},
"jest": {
"preset": "ts-jest",
"setupFiles": [
"jest-canvas-mock",
"jest-localstorage-mock"
],
"testPathIgnorePatterns": [
"/node_modules/",
"test/config.test.ts",
"test/api/*",
"/test/components/*"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/test/mocks/fileMock.js",
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx"
],
"transform": {
"^.+\\.jsx$": "babel-jest",
"^.+\\.js$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(ol))"
]
},
"devDependencies": {
"@babel/preset-env": "7.1.5",
"@types/detect-browser": "3.0.0",
"@types/enzyme": "3.1.14",
"@types/geojson": "7946.0.4",
"@types/jest": "23.3.9",
"@types/lodash": "4.14.117",
"@types/node": "6.14.2",
"@types/ol": "4.6.2",
"@types/react": "16.4.18",
"@types/react-dom": "16.0.9",
"@types/react-redux": "6.0.9",
"@types/react-user-tour": "0.0.9",
"@types/redux-logger": "3.0.6",
"@types/redux-mock-store": "1.0.0",
"@types/sinon": "5.0.7",
"axios-mock-adapter": "1.15.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"copy-webpack-plugin": "3.0.1",
"css-loader": "0.23.1",
"enzyme": "2.4.1",
"file-loader": "0.8.5",
"html-webpack-plugin": "2.30.1",
"identity-obj-proxy": "3.0.0",
"jest": "23.6.0",
"jest-canvas-mock": "1.1.0",
"jest-cli": "23.6.0",
"jest-localstorage-mock": "2.3.0",
"postcss-cssnext": "2.9.0",
"postcss-import": "8.0.2",
"postcss-loader": "0.9.1",
"redux-mock-store": "1.5.3",
"rimraf": "2.5.4",
"sinon": "7.1.1",
"style-loader": "0.13.1",
"ts-jest": "23.10.4",
"ts-loader": "0.8.2",
"tslint": "3.14.0",
"tslint-loader": "2.1.5",
"typescript": "3.1.4",
"webpack": "3.8.1",
"webpack-dev-server": "2.9.2"
},
"dependencies": {
"axios": "0.15.3",
"core-js": "2.4.1",
"detect-browser": "3.0.1",
"font-awesome": "4.6.3",
"geojson": "0.5.0",
"lodash": "4.17.4",
"moment": "2.20.1",
"ol": "4.1.1",
"react": "16.5.0",
"react-dom": "16.5.0",
"react-redux": "5.0.7",
"react-user-tour": "3.0.0",
"redux": "3.6.0",
"redux-logger": "3.0.6",
"redux-thunk": "2.2.0"
}
}