-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·46 lines (46 loc) · 1.35 KB
/
package.json
File metadata and controls
executable file
·46 lines (46 loc) · 1.35 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
{
"name": "pdf-editor",
"version": "1.0.0",
"description": "Online tool for simple PDF editing",
"main": "index.js",
"repository": "git@github.com:TimZeng/pdf-editor.git",
"scripts": {
"postinstall": "webpack -p",
"start": "node server.js",
"dev": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js & node server.js",
"test": "mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive ./test",
"test:watch": "npm run test -- --watch"
},
"author": "Tim Zeng",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"chai": "^3.5.0",
"chai-jquery": "^2.0.0",
"jquery": "^2.2.1",
"jsdom": "^8.1.0",
"mocha": "^2.4.5",
"react-addons-test-utils": "^0.14.7",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0",
"babel-cli": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.3.3"
},
"dependencies": {
"axios": "^0.16.2",
"babel-preset-stage-1": "^6.1.18",
"express": "^4.16.1",
"fs": "0.0.1-security",
"hummus": "^1.0.75",
"lodash": "^3.10.1",
"multer": "^1.3.0",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-pdf": "^2.1.6",
"zip-folder": "^1.0.0"
}
}