forked from webcompat/webcompat.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.96 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
{
"title": "webcompat.com",
"name": "webcompat",
"author": {
"name": "The fine folks who contribute to webcompat.com",
"url": "http://webcompat.com"
},
"repository": {
"type": "git",
"url": "https://github.com/webcompat/webcompat.com.git"
},
"engines": {
"node": ">= 4.x"
},
"devDependencies": {
"cssrecipes-custom-media-queries": "0.3.0",
"cssrecipes-defaults": "^0.5.0",
"cssrecipes-grid": "^1.0.0",
"cssrecipes-reset": "^0.5.0",
"cssrecipes-utils": "^0.6.2",
"eslint": "^3.4.0",
"grunt": "~0.4.5",
"grunt-check-dependencies": "~0.9.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-cssmin": "~0.9.0",
"grunt-contrib-imagemin": "~1.0.0",
"grunt-contrib-uglify": "~0.2.7",
"grunt-contrib-watch": "~0.5.3",
"grunt-postcss": "^0.8.0",
"intern": "3.4.0",
"load-grunt-tasks": "~0.6.0",
"postcss": "^5.2.14",
"postcss-browser-reporter": "^0.4.0",
"postcss-cssnext": "^2.9.0",
"postcss-import": "^8.0.2",
"postcss-reporter": "^3.0.0",
"postcss-url": "^5.1.1",
"suitcss-utils-align": "^0.2.0",
"suitcss-utils-display": "^0.4.0"
},
"scripts": {
"setup": "npm run module && npm run virtualenv && npm install && npm run config",
"watch": "grunt watch",
"build": "grunt",
"lint": "eslint ./Gruntfile.js ./tests ./grunt-tasks ./webcompat/static/js/lib",
"fix": "eslint --fix ./Gruntfile.js ./tests ./grunt-tasks ./webcompat/static/js/lib",
"imagemin":"grunt imagemin",
"module": "git submodule init && git submodule update",
"start": "source env/bin/activate && python run.py",
"virtualenv": "pip install virtualenv && virtualenv env && source env/bin/activate && npm run pip",
"pip": "pip install -r config/requirements.txt",
"config": "cp config/secrets.py.example config/secrets.py",
"project-update": "pip install --upgrade pip && npm run backend-install && npm update"
},
"license": "MPL-2.0"
}