forked from clenemt/react-assignment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.22 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
{
"name": "account-assignment",
"version": "0.0.1",
"description": "A sample account assignment",
"scripts": {
"build": "run-p build:*",
"build:css": "node-sass --output-style compressed -o dist/css/ scss/main.scss",
"build:js": "rollup -c rollup.config.js && cat lib/** dist/js/bundle.js | uglifyjs --screw-ie8 -o dist/js/bundle.js",
"watch": "run-p watch:*",
"watch:css": "watch-run -p scss/** \"npm run build:css\"",
"watch:js": "watch-run -p js/** \"npm run build:js\"",
"sync": "browser-sync start -s -f dist index.html --reload-delay 500 --no-ui --no-notify",
"test": "eslint js/**"
},
"devDependencies": {
"babel-cli": "latest",
"babel-plugin-external-helpers": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "latest",
"browser-sync": "latest",
"eslint": "latest",
"eslint-plugin-react": "latest",
"node-sass": "latest",
"npm-run-all": "latest",
"rollup": "^0.35.9",
"rollup-plugin-babel": "^2.6.1",
"uglify-js": "^2.7.3",
"watch-run": "latest"
},
"repository": {
"type": "git",
"url": "https://github.com/clenemt/account-assignment.git"
},
"author": "Clement Moron <[email protected]>",
"license": "MIT"
}