-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.4 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
{
"name": "feed-u",
"version": "1.0.0",
"description": "serves the static files for feed-u",
"main": "./script/index.js",
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"jquery": "./vendor/jquery/jquery-1.11.1/jquery-1.11.1.min.js",
"jquery-mobile": "./vendor/jquery.mobile-1.4.5/jquery.mobile-1.4.5.min.js"
},
"browserify-shim": {
"jquery": "$",
"jquery-mobile": {
"exports": "$.mobile",
"depends": [
"jquery:$"
]
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "grunt build",
"dev": "grunt dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/idl99/feed-u.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/idl99/feed-u/issues"
},
"homepage": "https://github.com/idl99/feed-u#readme",
"dependencies": {
"@stripe/stripe-js": "^1.11.0",
"emailjs-com": "^2.6.4",
"js-cookie": "^2.2.1"
},
"devDependencies": {
"browserify": "~2.36.1",
"browserify-shim": "~3.0.0",
"connect-livereload": "^0.6.1",
"grunt": "^1.5.3",
"grunt-browserify": "^5.3.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-connect": "^3.0.0",
"grunt-contrib-sass": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-sync": "^0.8.2",
"npm-run-all": "^4.1.5",
"sass": "^1.32.4"
}
}