This repository has been archived by the owner on Aug 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.42 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
{
"name": "@gladeye/bento",
"version": "1.2.3",
"main": "dst/index.js",
"repository": "https://github.com/gladeye/bento",
"author": "Gladeye Team <point@gladeye.com>",
"license": "MIT",
"engines": {
"node": ">=8"
},
"scripts": {
"test": "jest",
"clean": "rimraf dst/*",
"build": "yarn run clean && tsc -p ./tsconfig.json",
"prepublishOnly": "run-s test build"
},
"peerDependencies": {
"webpack": "3.x",
"webpack-dev-server": "2.x"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@types/jest": "^21.1.8",
"@types/node": "^8.0.55",
"@types/webpack": "^3.8.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"execa": "^0.9.0",
"express": "^4.16.2",
"jest": "^22.1.4",
"node-fetch": "^1.7.3",
"npm-run-all": "^4.1.2",
"pretty-format": "^22.0.3",
"rimraf": "^2.6.2",
"ts-jest": "^21.2.4",
"ts-node": "^4.1.0",
"typescript": "^2.6.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.10.0"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"autoprefix": "^1.0.1",
"babel-loader": "8.0.0-beta.0",
"chalk": "^2.3.0",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^2.30.1",
"lodash": "^4.17.4",
"make-error": "^1.3.1",
"node-sass": "^4.7.2",
"postcss-loader": "^2.0.9",
"resolve": "^1.5.0",
"resolve-url-loader": "^2.2.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"uglifyjs-webpack-plugin": "^1.1.5",
"url-loader": "^0.6.2",
"webpack-manifest-plugin": "2.0.0-rc.1",
"write-file-webpack-plugin": "^4.2.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/__tests__/**/*.test.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"moduleNameMapper": {
"~/(.*)": "<rootDir>/src/$1"
},
"snapshotSerializers": [
"./__tests__/serialiser.ts"
]
}
}