-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.55 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
{
"name": "spreadsheet_master",
"version": "1.0.0",
"description": "",
"main": "",
"scripts": {
"clean": "npm run clean:compare && npm run clean:gas",
"clean:compare": "rm -rf compares/html/*.html compares/html/*.png compares/png/*.png",
"clean:gas": "rm -rf dist/**/*.ts.js dist/*.ts.js",
"new": "ts-node -r tsconfig-paths/register src/tasks/create_clasp_json.ts",
"dump": "ts-node -r tsconfig-paths/register src/tasks/dump_spreadsheet_to_file.ts",
"recreate": "ts-node -r tsconfig-paths/register src/tasks/recreate_spreadsheet.ts",
"compare": "npm run clean:compare && ts-node -r tsconfig-paths/register src/tasks/compare.ts",
"build": "node_modules/.bin/webpack",
"watch": "node_modules/.bin/watch 'npm run clean && npm run build && clasp push' ./src",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/igara/spreadsheet_master.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/igara/spreadsheet_master/issues"
},
"homepage": "https://github.com/igara/spreadsheet_master#readme",
"dependencies": {
"@google/clasp": "2.3.0",
"canvas": "^2.6.1",
"csv": "5.3.1",
"googleapis": "47.0.0",
"isomorphic-unfetch": "3.0.0",
"pixelmatch": "5.1.0",
"pngjs": "3.4.0",
"puppeteer": "2.1.1",
"request-promise": "4.2.5",
"xlsx": "0.15.5",
"yaml": "1.7.2"
},
"devDependencies": {
"@babel/core": "7.8.4",
"@babel/preset-env": "7.8.4",
"@babel/preset-typescript": "7.8.3",
"@types/google-apps-script": "1.0.10",
"@types/jest": "25.1.2",
"@types/node": "13.7.1",
"@types/pixelmatch": "5.0.0",
"@types/pngjs": "3.4.1",
"@types/puppeteer": "2.0.0",
"@types/request-promise": "4.1.45",
"@types/yaml": "1.2.0",
"@typescript-eslint/eslint-plugin": "2.19.2",
"@typescript-eslint/parser": "2.19.2",
"babel-loader": "8.0.6",
"es3ify-webpack-plugin": "0.1.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-googleappsscript": "1.0.3",
"eslint-plugin-jest": "23.7.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-simple-import-sort": "5.0.1",
"file-loader": "5.0.2",
"gas-webpack-plugin": "1.0.2",
"jest": "25.1.0",
"prettier": "1.19.1",
"ts-jest": "25.2.0",
"ts-node": "8.6.2",
"tsconfig-paths": "3.9.0",
"tsconfig-paths-jest": "0.0.1",
"typescript": "3.7.5",
"webpack": "4.41.6",
"webpack-cli": "3.3.11"
},
"_moduleAliases": {
"@src": "./src"
}
}