-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "snapshotify",
"version": "0.7.0",
"description": "Creates a static HTML snapshot for your `create-react-app` app, to improve initial page load times.",
"homepage": "https://github.com/errorception/snapshotify",
"repository": "github:errorception/snapshotify",
"main": "build/load-scripts.js",
"scripts": {
"test": "mocha",
"pretest": "eslint . --fix",
"build": "babel ./src/load-scripts.js --presets babel-preset-es2015 --out-file build/load-scripts.js",
"prepare": "npm run build"
},
"bin": {
"snapshotify": "src/index.js"
},
"author": "rakeshpai",
"license": "MIT",
"dependencies": {
"commander": "^2.13.0",
"concurrent-queue": "^7.0.2",
"csp-parse": "0.0.2",
"csso": "^3.5.0",
"delay2": "^1.0.2",
"express": "^4.16.2",
"html-minifier": "^3.5.8",
"mkdirp": "^0.5.1",
"postcss": "^7.0.0",
"puppeteer": "^1.4.0",
"uglify-js": "^3.3.7"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^5.0.0",
"mocha": "^5.2.0",
"should": "^13.2.1"
}
}