-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
31 lines (31 loc) · 846 Bytes
/
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
{
"name": "sassme",
"homepage": ".",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "https://github.com/jimniels/sassme"
},
"private": true,
"devDependencies": {
"lodash": "^4.15.0",
"node-sass": "^3.9.3",
"react-scripts": "^1.1.4"
},
"dependencies": {
"prop-types": "^15.6.1",
"react": "^16.3.1",
"react-dom": "^16.3.1"
},
"scripts": {
"css:watch": "node-sass -w src/styles/index.scss src/index.css",
"css:build": "node-sass src/styles/index.scss src/index.css",
"start": "npm run css:build && npm run css:watch & react-scripts start",
"build": "npm run css:build && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "./node_modules/react-scripts/config/eslint.js"
}
}