-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 3.37 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
86
87
88
89
90
91
92
93
94
95
{
"name": "anvil-e-signature-api-node-example",
"version": "1.0.0",
"description": "Anvil Etch E-Sign API Example App",
"main": "src/server/index.js",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "NODE_ENV=production webpack --mode production",
"start": "node src/server/index.js",
"client": "webpack-dev-server --mode development --devtool inline-source-map --hot",
"server": "nodemon src/server/index.js",
"dev": "concurrently \"yarn server\" \"yarn client\"",
"lint": "yarn eslint 'src/**/*.js' 'test/**/*.js'",
"test:server": "NODE_ENV=test ANVIL_API_KEY=test mocha 'test/server/**/*.test.js' --require test/server/environment.js",
"test:client": "NODE_ENV=test mocha 'test/client/**/*.test.js' --require test/client/environment.js --require @babel/register",
"test": "yarn lint && yarn test:server && yarn test:client",
"gcp-build": "yarn build",
"deploy": "gcloud app deploy --project=$ETCH_DEMO_PROJECT"
},
"author": "Anvil Foundry Inc.",
"license": "MIT",
"repository": "https://github.com/anvilco/anvil-e-signature-api-node-example",
"homepage": "https://github.com/anvilco/anvil-e-signature-api-node-example#readme",
"bugs": {
"url": "https://github.com/anvilco/anvil-e-signature-api-node-example/issues",
"email": "support@useanvil.com"
},
"dependencies": {
"@anvilco/anvil": "^3.1.0",
"@anvilco/anvil-embed-frame": "^2.0.0",
"@anvilco/react-signature-modal": "^2.0.1",
"@babel/polyfill": "^7.12.1",
"app-module-path": "^2.2.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-history-api-fallback": "^2.2.1",
"lodash.clonedeep": "^4.5.0",
"lodash.pickby": "^4.6.0",
"polished": "^4.2.2",
"prop-types": "^15.8.1",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"react-modal": "^3.16.1",
"react-router-dom": "^6.16.0",
"styled-components": "^6.0.8",
"url-parse": "^1.5.10"
},
"devDependencies": {
"@babel/core": "^7.22.20",
"@babel/eslint-parser": "^7.22.15",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-export-default-from": "^7.22.17",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/register": "^7.22.15",
"@cfaester/enzyme-adapter-react-18": "^0.7.1",
"babel-loader": "^9.1.3",
"chai": "^4.3.8",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^8.2.1",
"css-loader": "^6.8.1",
"enzyme": "^3.11.0",
"eslint": "^8.49.0",
"eslint-config-nicenice": "^4.1.1",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-svg-jsx": "^1.2.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"jsdom": "^22.1.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"style-loader": "^3.3.3",
"url-loader": "^4.1.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"resolutions": {
"cheerio": "1.0.0-rc.12"
}
}