Compare changes
Some changes are not shown.
For a faster browsing experience, only 27 of 29 files are shown. Download one of the files below to see all changes.
.gitattributes
0 → 100644
+2
−0
.gitignore
0 → 100644
+23
−0
.gitmodules
0 → 100644
+6
−0
README.md
0 → 100644
+183
−0
minimal-app/.gitignore
0 → 100644
+23
−0
minimal-app/package-lock.json
0 → 100644
+0
−0
File added.
Preview size limit exceeded, changes collapsed.
minimal-app/package.json
0 → 100644
+81
−0
minimal-app/public/index.html
0 → 100644
+24
−0
minimal-app/public/logo.png
0 → 100644
+9.58 KiB
9.58 KiB
minimal-app/public/logo.svg
0 → 100644
+5
−0
minimal-app/public/manifest.json
0 → 100644
+24
−0
+15
−0
minimal-app/src/app.js
0 → 100644
+15
−0
minimal-app/src/app.test.js
0 → 100644
+24
−0
minimal-app/src/app/store.js
0 → 100644
+9
−0
+36
−0
+7
−0
+41
−0
+25
−0
+36
−0
minimal-app/src/index.css
0 → 100644
+41
−0
minimal-app/src/index.js
0 → 100644
+21
−0
minimal-app/src/setupTests.js
0 → 100644
+1
−0
minimal-app/src/testing/mockRedux.js
0 → 100644
+11
−0
package-lock.json
0 → 100644
+0
−0
File added.
Preview size limit exceeded, changes collapsed.
package.json
0 → 100644
+30
−0
| Original line number | Diff line number | Diff line |
|---|---|---|
{
|
||
"name": "@unlsoft/starter-code",
|
||
"version": "1.0.0",
|
||
"description": "A project skeleton to be used as starter code for labs and homework.",
|
||
"private": true,
|
||
"license": "UNLICENSED",
|
||
"scripts": {
|
||
"postinstall:stylelint-config": "cd stylelint-config && npm install",
|
||
"postinstall:eslint-config": "cd eslint-config && npm install",
|
||
"postinstall:app": "cd minimal-app && npm install",
|
||
"postinstall": "run-s postinstall:**",
|
||
"lint:app": "cd minimal-app && npm run lint",
|
||
"lint": "run-s --continue-on-error lint:**",
|
||
"test-once:app": "cd minimal-app && npm run test-once",
|
||
"test-once": "run-s --continue-on-error test-once:**",
|
||
"test": "run-s test-once",
|
||
"start": "cd minimal-app && npm run start",
|
||
"build:app": "cd minimal-app && npm run build",
|
||
"build": "run-s build:**"
|
||
},
|
||
"devDependencies": {
|
||
"ghooks": "^2.0.4",
|
||
"npm-run-all": "^4.1.5"
|
||
},
|
||
"config": {
|
||
"ghooks": {
|
||
"pre-commit": "npm run lint"
|
||
}
|
||
}
|
||
} |
react-redux-starter-code.code-workspace
0 → 100644
+15
−0