-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 1 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
{
"name": "woocommerce-test",
"version": "1.0.0",
"description": "A simple WooCommerce Rest API test app",
"main": "web.js",
"repository": "https://github.com/getconversio/woocommerce-test.git",
"author": "Stefano Sala <[email protected]>",
"license": "MIT",
"dependencies": {
"@woocommerce/woocommerce-rest-api": "^1.0.1",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"express-force-https": "^1.0.0",
"express-nunjucks": "^2.2.3",
"ioredis": "^3.2.2",
"node-sass": "^4.9.0",
"nunjucks": "^3.0.1",
"prettyjson": "^1.2.1",
"ssl-root-cas": "^1.2.4",
"uuid": "^3.2.1"
},
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-conversio": "^1.0.4",
"nodemon": "^1.14.12"
},
"scripts": {
"start": "node web.js",
"sass": "node-sass src/style.scss public/style.css",
"sass-dev": "node-sass -w=src -r src/style.scss public/style.css",
"dev": "yarn sass & yarn sass-dev & nodemon web.js",
"heroku-postbuild": "yarn sass"
}
}