forked from elementary/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.6 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
{
"name": "mvp",
"version": "0.4.0",
"description": "The elementary.io Website http://elementary.io",
"main": "webpack.config.babel.js",
"dependencies": {
"babel-core": "^6.16.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"core-js": "^2.4.1",
"css-loader": "^0.24.0",
"extract-text-webpack-plugin": "^1.0.1",
"glob": "^7.0.6",
"postcss-cssnext": "^2.7.0",
"postcss-loader": "^0.11.0",
"raw-loader": "^0.5.1",
"scriptjs": "^2.5.8",
"style-loader": "^0.13.1",
"webpack": "^1.13.2"
},
"devDependencies": {
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"eslint": "^3.3.1",
"stylelint": "^7.1.0"
},
"scripts": {
"install:submodule": "git submodule init && git submodule update --force --rebase",
"install:composer": "cd _backend && composer install",
"postinstall": "npm run install:submodule && npm run install:composer",
"lint": "sh _tests/css.sh && sh _tests/javascript.sh && sh _tests/php.sh",
"build": "NODE_ENV=production webpack --config webpack.config.babel.js",
"build:watch": "NODE_ENV=development webpack --config webpack.config.babel.js --watch",
"start": "php -S 0.0.0.0:8000 router.php",
"start:watch": "npm start & npm run build:watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elementary/website.git"
},
"author": "elementary",
"license": "MIT",
"bugs": {
"url": "https://github.com/elementary/website/issues"
},
"homepage": "https://github.com/elementary/website#readme"
}