-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.26 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
{
"name": "systemjs-jspm-es6-react-sass-boilerplate",
"version": "0.0.1",
"description": "A sample app in es6 using systemjs, jspm, react and sass",
"main": "index.js",
"scripts": {
"start": "mkdir -p dist/ && ./node_modules/.bin/browser-sync start --server --files ./src/components/**/*.js, ./compiled/**/*.css & npm run compile-sass & npm run watch",
"test": "echo \"TODO: Fix tests\" && exit 0",
"compile-sass": "./node_modules/.bin/node-sass --recursive ./src --output ./compiled",
"dev": "jspm unbundle",
"bundle": "node bundle.js",
"postcss": "./node_modules/.bin/postcss --use autoprefixer --autoprefixer.browsers \"last 2 versions\" --replace ./compiled/**/*.css",
"watch": "npm run watch:sass && npm run watch:css & npm run watch:js",
"watch:sass": "./node_modules/.bin/onchange './src/**/*.scss' -- npm run compile-sass",
"watch:css": "./node_modules/.bin/onchange './compiled/**/*.css' -- npm run postcss",
"watch:js": "./node_modules/.bin/onchange './src/components/**/*.js' -- npm run lint:js",
"lint:js": "./node_modules/.bin/eslint ./src/components/**/*.js",
"lint:css": "./node_modules/.bin/stylelint ./compiled/**/*.css",
"jscs": "./node_modules/.bin/jscs ./src/components/**/*.js"
},
"author": "Aki Karkkainen",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/akikoo/systemjs-jspm-sass-setup.git"
},
"devDependencies": {
"autoprefixer": "^6.0.3",
"browser-sync": "^2.9.10",
"eslint": "^1.7.3",
"jscs": "^2.4.0",
"jspm": "^0.16.12",
"node-sass": "^3.3.3",
"onchange": "^2.0.0",
"postcss-cli": "^2.3.0",
"stylelint": "^2.0.0",
"systemjs-builder": "^0.14.9"
},
"jspm": {
"dependencies": {
"clean-css": "npm:clean-css@^3.4.5",
"css": "github:systemjs/plugin-css@^0.1.18",
"fetch": "npm:whatwg-fetch@^0.9.0",
"react": "npm:react@^0.14.0",
"react-dom": "npm:react-dom@^0.14.0",
"whatwg-fetch": "npm:whatwg-fetch@^0.9.0"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.25",
"babel-runtime": "npm:babel-runtime@^5.8.25",
"core-js": "npm:core-js@^1.2.1"
}
},
"keywords": [
"es6",
"jspm",
"systemjs",
"boilerplate",
"babel",
"react",
"workflow"
]
}