-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.57 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.57 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
{
"name": "wreck",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "tsc && mocha ./build/tests",
"debug": "echo 'Remember to open chrome://inspect in a tab before running this.\n' && tsc && mocha --inspect-brk ./build/tests",
"build": "webpack --progress --colors --mode production",
"build-dev": "webpack --progress --colors --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spitz-dan-l/wreck.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/spitz-dan-l/wreck/issues"
},
"homepage": "https://github.com/spitz-dan-l/wreck#readme",
"devDependencies": {
"@babel/core": "7.4.4",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/plugin-proposal-object-rest-spread": "7.4.3",
"@babel/plugin-transform-typescript": "7.4.4",
"@babel/preset-env": "7.4.4",
"@babel/preset-react": "7.0.0",
"@types/assert": "^1.4.2",
"@types/mocha": "^5.2.6",
"assert": "^1.4.1",
"babel-loader": "8.0.5",
"babel-polyfill": "^6.23.0",
"mocha": "^6.1.4",
"ts-node": "^8.1.0",
"typescript": "3.5.3",
"webpack": "4.30.0",
"webpack-cli": "3.3.0",
"webpack-dev-server": "3.3.1"
},
"dependencies": {
"@types/lodash": "^4.14.136",
"@types/react": "16.8.16",
"@types/react-dom": "16.8.4",
"handlebars": "^4.1.2",
"lens.ts": "^0.5.1",
"lodash": "^4.17.15",
"react": "16.8.6",
"react-dom": "16.8.6",
"ts-toolbelt": "^3.1.2"
},
"resolutions": {
"terser": "3.14.1"
}
}