-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.99 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
{
"name": "clock-preact",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start-server": "nodemon server.js",
"check-types": "npx typescript",
"test-once": "karma start --single-run",
"test-watch": "karma start karma.conf.js",
"pbuild": "npm run-script check-types && npm run-script test-once && webpack-cli -p",
"dbuild": "npm run-script check-types && npm run-script test-once && webpack-cli"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-loader": "^8.0.5",
"body-parser": "^1.19.0",
"linkstate": "^1.1.1",
"preact": "^8.4.2",
"webpack": "^4.28.1"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/parser": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.2.3",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-syntax-throw-expressions": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.2.0",
"@babel/plugin-transform-template-literals": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-2": "^7.0.0",
"@babel/preset-stage-3": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/jasmine": "^3.3.12",
"brotli-webpack-plugin": "^1.1.0",
"compression-webpack-plugin": "^2.0.0",
"express": "^4.16.4",
"express-static-gzip": "^1.1.3",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^1.18.11",
"preact-async-route": "^2.2.1",
"preact-render-spy": "^1.3.0",
"preact-router": "^2.6.1",
"replace-in-file-webpack-plugin": "^1.0.6",
"tslint": "^5.12.0",
"typescript": "^3.2.2",
"webpack-cli": "^3.2.1",
"webpack-karma-jasmine": "^3.0.6",
"webpack-plugin-replace": "^1.1.1"
}
}